From ad61bf961bb81752fac8ba052f59bf169697d7d2 Mon Sep 17 00:00:00 2001 From: shashkevichfrida Date: Wed, 17 Jan 2024 20:26:31 +0300 Subject: [PATCH] refactor --- Craps/craps.go | 2 +- Dockerfile | 60 - Dockerfile.local | 45 - LICENSE | 674 - Makefile | 91 - README.md | 316 - adm/frostfs-adm.yml | 16 - bin/init-aio.sh | 71 - docker-compose.yml | 29 - help.mk | 11 - http-gw/http-gw-config.yaml | 36 - http-gw/http-gw-wallet.json | 35 - ir/cli-cfg.yaml | 2 - ir/config.yaml | 63 - log.log | 63920 ---------------- morph/node-config.yaml | 4 - morph/node-wallet.json | 68 - morph/protocol.privnet.yml | 54 - s3-gw/rules.json | 81 - s3-gw/s3-gw-config.yaml | 67 - s3-gw/s3-gw-wallet.json | 1 - s3-gw/user-wallet.json | 1 - sn/cli-cfg.yaml | 2 - sn/config.yaml | 70 - sn/wallet.json | 32 - .../contracts/alphabet/alphabet_contract.nef | Bin 2223 -> 0 bytes vendor/contracts/alphabet/config.json | 1 - vendor/contracts/audit/audit_contract.nef | Bin 1525 -> 0 bytes vendor/contracts/audit/config.json | 1 - vendor/contracts/balance/balance_contract.nef | Bin 2353 -> 0 bytes vendor/contracts/balance/config.json | 1 - vendor/contracts/container/config.json | 1 - .../container/container_contract.nef | Bin 5168 -> 0 bytes vendor/contracts/frostfs/config.json | 1 - vendor/contracts/frostfs/frostfs_contract.nef | Bin 3235 -> 0 bytes vendor/contracts/frostfsid/config.json | 1 - .../frostfsid/frostfsid_contract.nef | Bin 1457 -> 0 bytes vendor/contracts/netmap/config.json | 1 - vendor/contracts/netmap/netmap_contract.nef | Bin 3427 -> 0 bytes vendor/contracts/nns/config.json | 1 - vendor/contracts/nns/nns_contract.nef | Bin 6205 -> 0 bytes vendor/contracts/processing/config.json | 1 - .../processing/processing_contract.nef | Bin 961 -> 0 bytes vendor/contracts/proxy/config.json | 1 - vendor/contracts/proxy/proxy_contract.nef | Bin 752 -> 0 bytes vendor/contracts/reputation/config.json | 1 - .../reputation/reputation_contract.nef | Bin 1063 -> 0 bytes vendor/contracts/subnet/config.json | 1 - vendor/contracts/subnet/subnet_contract.nef | Bin 3523 -> 0 bytes vendor/locode_db | Bin 25169920 -> 0 bytes wallets/game-wallet.json | 1 - wallets/wallet.json | 1 - wallets/wallet0.json | 1 - wallets/wallet1.json | 1 - wallets/wallet2.json | 1 - wallets/wallet3.json | 1 - wallets/walletAleksey.json | 22 - 57 files changed, 1 insertion(+), 65790 deletions(-) delete mode 100644 Dockerfile delete mode 100644 Dockerfile.local delete mode 100644 LICENSE delete mode 100644 Makefile delete mode 100644 README.md delete mode 100644 adm/frostfs-adm.yml delete mode 100755 bin/init-aio.sh delete mode 100644 docker-compose.yml delete mode 100644 help.mk delete mode 100644 http-gw/http-gw-config.yaml delete mode 100644 http-gw/http-gw-wallet.json delete mode 100644 ir/cli-cfg.yaml delete mode 100644 ir/config.yaml delete mode 100644 log.log delete mode 100644 morph/node-config.yaml delete mode 100644 morph/node-wallet.json delete mode 100644 morph/protocol.privnet.yml delete mode 100644 s3-gw/rules.json delete mode 100644 s3-gw/s3-gw-config.yaml delete mode 100644 s3-gw/s3-gw-wallet.json delete mode 100644 s3-gw/user-wallet.json delete mode 100644 sn/cli-cfg.yaml delete mode 100644 sn/config.yaml delete mode 100644 sn/wallet.json delete mode 100755 vendor/contracts/alphabet/alphabet_contract.nef delete mode 100755 vendor/contracts/alphabet/config.json delete mode 100755 vendor/contracts/audit/audit_contract.nef delete mode 100755 vendor/contracts/audit/config.json delete mode 100755 vendor/contracts/balance/balance_contract.nef delete mode 100755 vendor/contracts/balance/config.json delete mode 100755 vendor/contracts/container/config.json delete mode 100755 vendor/contracts/container/container_contract.nef delete mode 100755 vendor/contracts/frostfs/config.json delete mode 100755 vendor/contracts/frostfs/frostfs_contract.nef delete mode 100755 vendor/contracts/frostfsid/config.json delete mode 100755 vendor/contracts/frostfsid/frostfsid_contract.nef delete mode 100755 vendor/contracts/netmap/config.json delete mode 100755 vendor/contracts/netmap/netmap_contract.nef delete mode 100755 vendor/contracts/nns/config.json delete mode 100755 vendor/contracts/nns/nns_contract.nef delete mode 100755 vendor/contracts/processing/config.json delete mode 100755 vendor/contracts/processing/processing_contract.nef delete mode 100755 vendor/contracts/proxy/config.json delete mode 100755 vendor/contracts/proxy/proxy_contract.nef delete mode 100755 vendor/contracts/reputation/config.json delete mode 100755 vendor/contracts/reputation/reputation_contract.nef delete mode 100755 vendor/contracts/subnet/config.json delete mode 100755 vendor/contracts/subnet/subnet_contract.nef delete mode 100644 vendor/locode_db delete mode 100644 wallets/game-wallet.json delete mode 100644 wallets/wallet.json delete mode 100644 wallets/wallet0.json delete mode 100644 wallets/wallet1.json delete mode 100644 wallets/wallet2.json delete mode 100644 wallets/wallet3.json delete mode 100644 wallets/walletAleksey.json 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 c96b09774e324457683cfb2785b2ba88e6691af8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2223 zcmbVNU2GIp6rO3fe=xvyTLesumkLX%l;5r^8^9gPf|S1vMIjm!r!%*mJDt6EI&*is zLt^y7#6%266GftdR(vpxCPs-*##Dk3N!%JAOlw1;U_c0l1S1-ytY>C-rx_!NIHsae~`ly9dR z&I^JlUU=i;Yx{OCczI$^^|f7J7xUe_$F?{1VZH@Bq>m~bYn$D@%*0iI{Y|}^{H%53 zuDLa*51**{^MDO16#0LI4t) z+agBf&UI_M)JmwzplK>cCZ>H{N30jAi~?l{IjT)8j&#M*6S@?pm}eBL+YdetF*v zER(28kBLz)vr(zm?HX~skcKeL5u4Erh&lns3vofPgs|RtEFBkxWV}l7gH?j1hbK|G zBN8kdy=AqRQ9fuuWTD2Hu_Fp4t7$tYaa6A0%m=p$skX(NE|Psgi;Ly5eoZ*E&JJshwm z4pK}TE1K)In(G*uU_^&k4oo1}QQqudJRYrwNaLudDqneBfXq()P6sn=!sXd5M(~W%$d%Q$qC;iRKq!up>vMNs$q$(6;Ee-ewT1({JgRxma zs=H~_lA5PZ{MotnYIobxS5F@~|KX$-|7xlz)t2@=sPB_|o_l(4N?LSxQYDC1R;wt; zlegdJmL3oJlBuj}U{xjN@3vN2e*KxB*Ob{?;n4wIs=*dh_4%Z9Y1!|7ha}%(l`Xz0 zO7W7_Dlhy20i#8fZ=USGVCfy_2d0HcR@8!olX+6Gjk4%w3ngG|(NwWGKswHjM4P2~ zgyz7B8iFV5$9BS}VjJ-q!7+^f+56(P!blWKT^ePGGgKL$s5eVBX9ZGvn9T|8OBhfM ze)sIC{y$Q?AlQnY+w!Y*wL4&24@*;7OVd+2{Vd4XKvpMbTsTI{7%b9sZ>f@ zd+(G9rPxL`RM+3_l=W9v8H}+jUN807Ie6Hy&RfNz9(x}CJNf?Bh%~3tTwiJlm$(7L zcMII_bT(tAz2iabYH@MKV9jP YLMj6tEK-tXY$fEAgz1tzbGfJaZ-dn*GXMYp 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 0a6f41176ebbfa7abc7ebeeddb0a92617110752e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1525 zcmbVMU2NM_6t?rz6)-4HrqK}95G9;APWXGn4|eW% zzI*QZ&iQVRrVj2o)9M3GFK-)9e~GWG!XZtlA9S#)>* zL;iEGPWwN+J!J^DIN`Mjs)7A9yWy}(ynBxY^2hl^4rr-J&N ziDaydm;|ZEQBGA%T>{9+=~OcjkqnX~TtLBQNzw)#@F~C`+n{)PZ^sF4gH*{=^RJCm zp(d4NI)?M&;*~>h30cMiMMR;9sO^4F30c-vMeL0D#Idh$Hnjwxd<0w+d6G-CssZ6h z(lnXoq+uDO?NqY-`uWn$j? z@m8xF!Ku(0ep0g|{NJ!TLadBf*m3Q?`tI1AM#NvcZkz-?ti`^#=kXX9(R4gY)rx^e zv2IXRK_zOGBr`{n2wNI-7V6rw8^{|n2`@9Av{e0{FY?9)pTU+Qccz(pbJWvu`hC0I@Pm@*A89et-y>Lk6~ z3k~fBra#3oR^12Aufq5^DD%c2tJP{VkuEN*DzXiOblr<`l7cE)9tvtrH)+{paU1x9 zp?Qs4yE^^b{)5*CySKb{?$i$-tmG5lt=71<#-2@NNF09Q*?|3b=dNyZn7vl%TAA3J}r%dA&xR>=QG#FNy(0@|<o_D`aI2e zGwcq;9@pVwHL@ASSQk*e4eFR}h34RZO(4V|MVABVz{)=M0qwsRw0ZD+*%Bw(Z%#z^ zTH>9dxs5KayWL$M?C+}@g<>ZD%L4czA)$glroN*3yDx5^jz~NJkwlgF=U@!y3>a1p5{s5Sum3#!_xU)0I@ISP0Dt J>$kR-{{(K&B0B&8 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 bba62e48af6002f810cfd1c361269dd3220531c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2353 zcmbVNU2GIp6rS1cmSV4FciSowu*0SdrKV6rCk-3G8L-7Pq6^zv5I12ud)qs^)0yea zY?;}D(Zn~5CMHTm0vHk@jXr6J4<@Y$Ci<}D!G{t;{E1OP35h=h(K4R-*>+LU#C_Sh z=bn4dcfRwTbD!+(+n{2tb5!f3{{Juft8|tBuzmB6`(o!_J{f!OrxPZB9gSjZn>IEk zTNcI?Mbk6aH&(v<=E~|%&YmbZUp;p3oK|^fsfi6)ROB+IDVq8xkEm>EV&pEHjd^^> z1r#;Er{U>(MAQ8jyV|0cy7nPD5`Kz^t_weh5giRbCA3mhbRrI8i`g$*DmG0&D8L^Vxg?m~p3Fh5im5#GEpTG4G(uWFWPI2rC2V9sG#yZ<5&G5K*>?w@Om zeU^&$#uLXY{TEk(brpA+rYIhK1Xu}1AyHXyqMAFBg=Fozy%V*|s-zhPmMliW>ZnB+ zZG@3D)iOjdnUW#v7DGgnqzQ_v*cub{tZ#fAY;b#4`1a9dFA~(`oe^af8#UX>a2u@{ z78OyI@Z!y~DqBHC^1|$Q+h6C0s0g5L2h{CO_ry+z?We+ zp`Hb}z!W3ux*|*Bu!5Np&0qrZI`gvWneq%)CuBoY$FORp;d-ivqI43!#ALdY3(JJJ ztn-4~3*;qFG`*ELraNq+#^zawoe>Hft}F%jx^fRq>9#`xQXnOIcmEt4>qV4($Xo5X zWA#kUil%LSZ@4C*X5a`-af<7@IuUNJ`SB(13Y&g@%erpF>IR;WwUWt9V8fI(l^K)G zG0~Dpn!&aX<%C?fYzF7$nVtxBC~ebZYsW_P@B&w|$%u-9#k}KH+#;A!L<^f%^};j* zC&I&i;5oJdEQuLUT)qGSZnXDoKNx3u?#yl1eb#3U>gc1LVxvx)NB8UiRe*4|3)vND zN#CxgvIBkDrfH8ZZWZJ<#jZgqO;sGwM%cxSB&tkF&jX$X!K7`c%$31E+ccx2=J}Ji zw)I`jcC3Eo+~LdbUds1;I`5+T;7ltS5QY!#-PMbh{Y`d(M<}^myu#-a6^~}&#{0#u z^&H7?=b`_=LRT$zmYWSs(V!!91fYOo8Xp)8og?86_dAf_Z-as+Vf$@3I4)1I%TWuY zw8mnft5kCY8;oe0*fP_o)htO841fCx5sZr*jrodfZv zX@istXZv@~exBuC0Ar3gJ9EhruYS2S%76I}aGvwW8%J9u+Nl0yAa_MwY{f zBNhl_xMZm5qI3N2AU%)2fZPhEDoAKYkZ;7Xla-9{YVP|-bTZf02s6ch9{9M|cuqOP z89*6KK2U#biC^=B_YZQXApzY}Y&{5^FV_^WV=ed|=sA@2CYFuo2X$R?2KX{H?Ti9&3((0MBYFn0Rcx2Ts_SRX2Ih0=Mor*9~kQo8EH*uUNGt XE!8pKQwOc&zt+5;6u;u5Qy>2c+-*cb 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 d3f134986b3484cbf05538133915df8b8f362ef8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5168 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 L1bfQDnP%yq=~s@6 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 66f446481d0d5bd07a7cdd2a0d6f6c44bf86a0cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1457 zcmcIkPly{;9G=N0OU0)q*+pz|?c3N+!^+mB-LPzM>x?zEOjUv@-GUbNrJgy2_@d|Nh1PH1Db3Wfxw1JaP5?ONp<4U-8rjpo;iO)@TsU5t1ZX zUVAX#xpDjM;UBK7)PkEYKeoX-U&aY%Mof}L@9l$$b26APYzG@<#Nh?PDe^pMVr14~ z#UM7a-clDwV%nz`8wL1D|WMBBl#@_ukJ z_o0X{jjcIgeEZVhCr{lgO&$K=>c_u)wPnryxZMS#{hWjNtX6*e%{L0*z#dEQ$LuUT zF{HV)KRXVd*mWbjAiR_h^lQm8XO11!od6FxcQU&ljPJ%et+KEItfL^`&iqs;6ng(o zGZzyR1DWZYGr~PHLYPDWNdB@LRaJDa7J)&%v&@MNWH}1%`?{U^SyTg0ipsFeTGWD^ z^_J3`F0$?D|IFg_cDL)+qUB}5vxF`&)8L`Igu)HsdI|{@YC)IKsyJFGzXxkCV*Rwv z>pQIN&T@-1`hQzHb6ao~FOR%y`n{K;J^ZGA%h{tv6O-cXqi!wPQHA}&N6Zh#O4{|A rZ$EL8YfY@R_uX$R6IlD>?CL}$v@2e*o?&b2&CGR@T2<$dz536;mlO6- 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 ba89fcd6c31ce6806e47c7228393ad66cb889900..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3427 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 b(x!+BXu5NQU 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 6f9c69556491622fc28b1e2fb64b146222cc3f7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 961 zcmbVKPe>F|9Dd`jQ83Z2YxM8nGjv+C4b8UArEJDr&BbhSjXgw%apt-6w%wU==4rD+ z(4kXCQBV?r8FiAncIXhBL{ZRgblOdd($EY+D5wZ*d%La{3eoeG_edY;L#U*Bfr1y%;V6FXR}=u z-@ya)hLr{l1F57_m5~Ji!%SbBxzgLU_8mRgoaMHQA%Z z5fx+rShCq7wz4G0S-~7%W1r%6MG0nW%3tiX2OQ2@>0qv!qSf9R>WQZuf!>4x;pVq! z+Q5$VDiu_^J**q6l196c2#g~&N))K|LrGJKAyUYc46GBVh^FF?vCe)&GfBT0E}};% zNae!9?BT8F*(%-8BxIUcjs7XeDkfNr<6$HVnYoVZd<2xyhTOCvcd~Sj@)3rDEB#lD zyKXzj^d#r}3o9Us6%t}i^BbrJV-?j76n~j>EqnH{oNk~YtPPrQ2pJ~URG7eKLL`#n zhse^YJtV`HLzKKdCSL=2MJ1)(f5E<9DubI2AgSiG8 zLPN;A_$!~E;5=;2TKS2RgmhxU4j~LRHJDipaX~E91Ho%zyNkm!I1YM zRWf42k6jBFC%C<=r%(V*EF&l>B39{C5(!KQqIXe+gSt%Zt&YlXC5OHBR6XoUnQZ0K zou5bAKZomTFFzT5dw)vyJzvVR>y~S(PWK9ZXHWJ7*d1&2yi8h|w;dGsj>hos@`Qw| pr#>~7k{EELOw4W)8%o}WRIs2^Y2)7?l-pBQgHwP 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 a8bfc235b52c64f2a26e7d26809aca185dd497d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 752 zcmeZsbu-RO&DTxO*JU6dFnvva<*-M?)|Zd_+~bwh>qloE@pfZ+UdUN;qiqKc-IfodIiqza1iD=HO|^YcoI5|c|5GV?M^G81z$ zt5Q=O&p&sc<`B-n1T;tks70d^N>6tPXJjyEU?|8CysZ#m!VKgB)xfL}S|Geoa9%;B znjn%GNF<{oz%k4CB`45G#tN|E79fL6wiIMI{!o9@0~Tj&u+uZ)Q7b4)Ez8U=EmkN? zEh^5;&r`_FEY3|VNzSlRNUbPHO)g1IQLwWGDwYZ`XJqKMs$k4;(z4{yM);#xAu*>Y zH8G`9AwNx_BqLQJC$S{8xCCaPl>$%)R5RG(8)_Ut5y1lvuwe7Lp~m8R$O|ZV9_UPF zN6X+mn}Q4;k@IDbx-YQlc)9mI4ozefmi&Bv$tACw2EYI^2r#|;@BjZ*Y8pK9Xu+D8 zoSa%vQmo+a7_5+=ms4r_7pM?qtm%KS4s{+SkT5VFpb@Q*oS3IjT95*CG(2*wDk`f? zL;wH(A1r*JfJfx-;$O~guY$Ey`;Sb&yY_a9`N_ZkdDtL&+CcpOSMW{PVxApsIe);laC6G_=*y(R>`?t8YExq|h>$1}1WC^AG%vmTuvz9vG?AnqlYXosX|3Xyl!zm&Z22Ew93>t*BDKbLdhD}Vzo2q z_Dn2=R;zHe%D;hi3{|O%S{(5RstOQP1?jwi08}7?ybK4$FuVNm+#LqP*|FXJB~7w8 z_QaLv+c~xy;{e71`V`fa*W)e#uW2$A_+D8AeX0(!jWvX!kuHUSs3f4SDlt((0gNY_ z2tt$GYk>2W=6^luUq{;9%nwjHS@ytlU$bb>AGLHvGC4NVxVb;A_RVS%`@Qb-2-8E5 zCOOo4+(*%xE+(KFH$Xzvjr6!NXvBCVNC6<4nkXRLRci}=e28lziQ#}rN@wbusbl%6 zpaFPU7x}OS)INYD5y(6e4U_{009M%IjB%1K!WGXPliOA(Njrn{AzWO>Z94pyQ>oN6 zT}M@`ifrNa+kpdtS3q0~V|qT5fN2f-X1dDeG^%`W>PK7qR#$!Pt%bX99SlYdU+oN175_>$`zV*{K1ViH|Ip7=Y5-eVQNpzU?+$A)CjonHv zM+^gFilXU>OWP+u|LXkav!}-ftuMN2ipu0GAz~;(fTH2-`K>hv1E@*Js*=!$4dyU0 zWUT8!5&3aQvGi)GE^G}juM;Z#XV7F)yTT0-5m zkrR{2>1NP2$3KD-Ij)xqfL#ap>KPzN=c;&44Y#-i12T zifm{?+F)eGU<6golC;p5#Z14V*(yP^+C`$4CODt1WRVSZpH6~uii@LCsdOk6LyqYK4p5-p z345FkSvD)dcnplj**4Uo$XSa?`?WZT1ifKK$>&_1L1B&nIl6IN%7A; z^zGJSYZKb!xdX>O!`LLcp(m{Pm%o)t@ekokB32Lo^{!2iQH0dq|A9mbuE_NU=~biT zFTatQRS`{=jYAtOvNxCcfJj6I>vEd`$pMih2EC13Z+H!-IkmD9YWuVx=R4Ii@hkH- zLbtelfSx3{a8vO&tD!<=UwYY=a=vuTmh!&zBuHjt!a!ABIExLOP4Umu3Uq@I6t`dc zYq`)y)ZkyJAm)e+RA_>sXluCGH4+NgDZoy-C@s>3}Ped#eEGE3%vU#V$ z!UuyKFyVD(&Q$|56}E|A2~5nffQ%wu`>{s6SIkP)L6KayALo=|ybm}p7fSG-fa^7# z<(uCsHR2b0Mc7Wu9EaRmPiJn3R@}ybrsP!yI(MPm37~Udl|tY63zUr0vKDS)NGd?S zJsWiM&0def`hN=W&bj3Pz83J>gN<++gf$_oxT2e)5rq8qkk_$R@$xQxzpKB!tEJx` zuWE4@Ip{$8bK$wKkd5hIGwmJKNOWW)i)g1BogW2KkInwMLolhR$m-t*$n^Vfm2Q19AjA7 z!M*49o;Z?<-|$nZ#8$zu&9!_C6F3LsDa@on6Nq+(HM?8-ZD)}h(X{8ypTrjZ?e)!1jW}aPBeg=Y5M&jS3~Vxuc51|`*c-LO%JH-?%v&9nd;hO zRoCRNd_)ukL`lpX&f)Mz9-{Fm{_q`*5qu<3qe!CH7;n5{9$xjTx&N>B`l|L` z-}m*@>N$xZyMJ(MzN+e~)$4n$|62dG*33-&^GWphN5A=*e{@Ox`$_Q=&wnbtKo5Bu z`}EjbdEDrgfA|ZtzrFQm*Z(m6?rfB4Ak#pmflLFL1~Ls~8pt$|X&}=;rh!ZYnFcZq zd@N`nM(;B-F8u%H4F7u!|9>^%|F5|Jl^Z|*9nT(qEc{KG44DQp4P+X~G>~Z^(?F(y zOaqw)G7V%J$TW~?Ak#ov1EW|!p1L&iYq}7`=s_c{`2YOye?sNxl9~8vg-} z_4~gOFRIu73BCRlI2V%d|3MnRhhE?P|1%mt`BUTZ`)K?l zG=7lAwNFcb-iK-Yc6$A#eh{;%=SPF?X>V8$PQv@1 zci&F8eHtF*Hrm~zgXrYG`|qnp`@v~D>eB1Au+xkBAzo+<_6qG=^mJoCIz4Uok8@ts zI|zII`*Y3X$(#J>Kz(+@_tXdC<4y2cIM<>GFIz0>1d&>j7u_Z z>;iE^A>YE$i~^@=98{OSALqE?IZQvId>g zz2SI@Nzm=+^f>Gt2WpYWYnfEJz1d8Q7teHZ?&oLc7aZc%@?!C@b$Y=`t`W4mr@4Ih zpckHvWg=ny<8Y+PoLUd#7fE2hQse^9uch_5Fgx#>`3r``mu?Bo> z-CoeidEvn!&I9Wr@V!!6=!MxiW5F)E4ue`jDs&Sw9rjPc;9#si(rvjHhTXIF{_*$) z(rbB}>2-cKE#chk+^TCC6vYCDVZYzTxu};TiC1eM9CX6|UN0IP86wsS>_}ajU0g~} zJ=Q9ov7S@4vQ)^Lp8DXZ8*oV*(Fule=kQbPd=g+!RX~bx)$f z=|odnjr4rHjb7Mj_j09S_iUIedzVYQ^{*KJF*NzLO?Cs!&o1FeO3UrMtZEO47#@k!cBiwoh{&4fR|v774hlfT{F zKW=w%GTp>^Iu?ecE_b5A{zy#g0a~s$(z0TK;!;Yg7N@@JnyO#m)Q7NXt?8{57_aC} zlxLf0k)5D0_>^5`-TQU%8DAT84@^B4`~C3tSh*xwv0-X2eJst5)M=B9Ea~ha(?F(y zk7W%gT&{jD&3s1u5B&FC_`iDo`{?>|KEe+!M@ zNaH-=|A%S(>onH>g+Af`e@d@Ep5g!3(D+C3dez&I-hf`vy8)~?KJMsWRG^)!<|V$H)32HID2DFLYq=mdCWo@xo<1;nb$sy`i-^I5>lg!!UU7$>>R6 zg}9{`UCQ;vRu4Q%$HAFl<>q@w!%k;poq2=P$;-4<^JRu~R%RC%(perMNb3^t#Yjg< znNtgluK~H7b8M+DIUO-ozari6O3t%(w~GfZ>2}yXgfGFmqqa-T(p{ci0+vngC_qV^ z1$K3c&!uX(e?!^1u)0kIF5XrP=|c+pYQbUXR(<&?74`R{$@-(MUkH19L#rwap5c0% zV}|&7^2rY;O!a=y>zS5rrG0eV0lXP61ll{5Y5`9r0Qjn9?<_bRZdJb_UXx)v1}n{#qMsIXVRmJ1b#;Axd2w!TVLk18!JN-6&aW@7udgjGuB@&*=AUla>><-Y zrh!ZYnFcZqWE%KH(EyyOg-+iAQ;_+R@6K15?3@82VTfd2j8rSZ$@_rHSt0pEggzGXy}%E8{q z4rF2ad?zvy*4P>&voK|BU539ijZ@ZV7g%&Ff7om92lu_yD^|Hl=#aw;JDu=W8~+)9 zIhlgvu}v5R*3uUAJghxt;f;kUd(#RNMFW`}P|94|{|`a9pJ6OWtv0P7?bAfqc^ZYl zFSEM50%Lb&aef)b@KPH3LaL?p#f7=K#kqy~g{8R#=2IVwST}I6YvO=>qwyR~BcgKU zrvT*qoZ;Koa+I%3tEyT%gvY4XKG_R|Ye>x<69_QOp_q+LgRD1@S#H*<){jJp&5c7%VyhNP|fPx(&F0M`s&Ku`s)1LN;ApN*h6CQvg7RuH;*hXx*W8NG}p{p)?$TW~?Ak#pm zflLFL1~LuYvjzaAM?aTlo;d!jkK$hn|9=BLb4YmqK^p%BjWzy0CA|Lzdj0PZzJC*q zAEL3s=j!K+2;Xb}!S~SkRq@L+UqJZ&AsWAj#`^uwA-u1@|BW=({({v{jpcuYe*Z%> zej|;KDIegQFs_xaO>1mM!Jg381l&ve3pm4AqlDTErbP+0XwdFVjO{5+-nFIWc@+ji zIA~>l#q=92uK>xcE-$Rjt*$uD@{MVo2(|ErA_s`<@|Z-Ch^@|pozDX5V{L6ri$rU| zjp&9Dg(|CjePMnMj)awkRi%+MWM7zFTc2CQtIKN(&?nDu7z=rIT6L9rAO~K+1BCG2 z%JRzm@;YQ$Ut3vRQvtrT2A38Q8eCspSYBM3UtM=Vi`vy`U1qggVfRSt9|EC+K|dr5 zID8DXtJ6APYT+%QPSFyJspv@sVbM8Yd+qAf$3nY%3;qr+Nh|7vgUj{P(8!%w$6F^* z9bPM@9p%Te`w})c>QkOon>QjLW8pC|H@mX3yfD86-`PC;8S~3&1_3tY%If0$+}zUY z{L*OkJEW{lyYM#^gGlIY#A-_W_0~sctj+bZxijrCu{lV2Fs3?G;n86Ffk%UpLG)R$ zxjXF++Z-kq%rtVq*SfSgk6D=q0bp%@eidscy~LN-)X~2_4?h;p0W3C~uC_L(-FRCd zQsv6XUTGU^e!K@<4mF6kxDF4jIy%=Gmu78t6@SUv+`_`j{NnP$vSVX5P5O_+CDR0N zeD5Ojy0!#$t*_55tt>7qudJn)oAR>Hug*c=AXTg^EvQ9cQ)sJfqz*XbY#~p?$h7pxaHBwxY0$BvUj^qQ1N|yTsh_xMTXnC@6yv28+K=#4||ecNLEcnblC`OeNOlp4B)GPu0Jk zJq}`!M)eE1D}D94QBm-EF&^5kT?U__%$AX8V98UZd6fjm@6Hsr$$BPN>!t%T#2t+)E8q5V$q;&OoSJg2=Sxfbg$Pw zI5LO`byYGXR}H$T7h_)uRaVRdTP#h%!A-z(vL>R+&nxguZdyvU%8x5vMiS*VT*uX> zL4>*Ma_B|ID!7m?*>UC8CD{qtL#BaD1DOUg4P+X~G%%e8K!qRu*y{gjJnj+R*LeQl zGJn7!;s4jtXZfrWXlr9ym0qXSjG)q*z3=qJWfZEWjUK87-)!??J*sUCwsC0v*(GO}n@)2x+ zuX@d(E8bO&(QS)c0vP}B5DDo9MU8%2hc0pHSY2Y4M^dfOEj39iETF+3S|L$ey)R&+KrydqnhtPCAexzi~L zSbVB}o^@V##T9~~xUT7Lx{{zDN`uBgC#t+i#A>n=9fA13E z`&ZNJ-%8`x)A(};@4t=4@1wEq7g(bBzyAE+q_LK-L;3!SKaj7AZNB^g;#D?#d0amJ z!X3v{CjlEG%2&lLtt53{dcld>8~ijEwOBA|DNC+3SQGnb^1Xv@a5CtjQHgO#POZe1StU`z zTXT8E>B`L4#5cEx*0zp5I@5dlRjrbwgedCc@KWb%@>?6c9`JjNQVJJs56UhZ9FcYd zgDk1+A=5ynflLFL20l?WfL8aTpGz}O9jjoA@V@5P|3?~YeEl_q_uojrq5J*mc)qUp zr{BLycwgi9e@$cEUr^Wge>Z*Jrx3o^e1KQcSjYdrfbhM3{mnFf6aBtNcwfu+n>5z` zh?{VFz$G#6Z}?X<)~|mzl%ihO^$0%~tr6Au4fOf%pt1HZ{6n-(P_OI1_g87G{ywiF zj%|8DryrorTP1|~!VN&L-BZy!m^I^9D2(V`F&h9fRObfCUPW%9f<50qzE^{v7ob-* zzr!iwRm5y>w0cCh+g!zBVaaLf%(jA{cH7FUh;uwtyT@b9`FKtVIW0#<&|^RBSY|5j}Cn2Rm6bA!)lCf=9=(=buBj<8p&-%nW~kdPnYwSCK;#)vDeurmYKU-RwfjJPb}#->Zn*=V9CQqO;3` zn^E_21ttFzNk%m7#OIcI6*<;J)iMV>@hakmdXTvrPPjdKd8VJ$OS4`~?;cETn(?C| z^3LrocGG#C0IeO>asFH&NlX9j@xCVk4e8Plbk23~h+T7DFFZI#(+NXyQ<5!Meijy? zb3?bpE)bmB?5ay1i`YDu@xNvm8kDI9Ptl3pTuBrUN|*DR5&PqCe1mJ2yp#3v8|;osldD%4KQ5-5CAEp&;z)S%u81?qJmh3` zgMBkC@4{W`os05{QL6NAeqyiP-Rnh>LF^Km6N{sEEYqq`%;EFe2cgYkAdgItHs6>+a%wfL}=Ee2yF>a>ps z2^&qDVw;A9su*W-Zqakbb-u>#=l2n{rVY;|9>*!|F_WlAEdFy-;0F*H9r3rG*+)yn_?h=yU=2o zPiYXXtu9e9_W6}LPUBS(OSEEMoSUCt8{*JH8ysPBE{tL z!=BahE#`OG)biGvDm3jtVAUP*r5T6uebjlsKL>4^ode`K)O>R<&n`MF_3DoN3_>?K zW4eVlrkN)Kmz8TX@5ndv;NVPU$n!;681#}zh_*{%hj}OC8Y#)`e2#QxTZp^a>D4d* zp#!KaSMG&o9*~%OlD0?S9^efhH6f~cRqXxq(f<`KJQJxu8a^t&!ObX|_ytLu-WIbt z(JY0z{{Ye)HfQy!d^tiukjDm{6N4~;9*q0Ppw1+GL?mP_Z{SANEjKykFy>u*{HoXk zRBhi1d;QQ-$zh}2yV0@u2{yRP+=OLuyGYv|L&iwm9e-bqyYfI__Pe+Vk5!wM&V?zw65ca(h=F066Bc9vW z7iJ_g6BdkQhk@AG5W7uB62lNwd{8d1+&5_kL0rt*#)jB8*$6u~U=MOB8~dv4TmLxc zfp!Z!@_x8dCdRG?{l16aON8A4`k37frvwyjGZ-5iVq}1&YD<gEp{VylHulfB?CVc-ez5eC|-d9ik z?-bux_+R~eh{msrhchoEzQ5)Je3Zu8-|+Rs_aFNgi0}Uz`u*>rvCdEUV&eO2zQem{ ztiSIc5Z_ZyMkHV>ODeVFP;NEZ_>B-*ZLcudiX%~25 zJ7je;Cje;U4*XZ}ULYlGmV?ewaB9F6RM1AJ0$W|Nsu>~T3Caj!I+%q8PYnIbLGM;z zYIcmT2=1jJKA>mX(}NsU2i7ZiVuW7~quxwsFiPZ$ORUUWcQ4~CJ zXw8y#Oz6b&3Td(68O{e)?jq@Ya5L%)o*3s9Kq3ix7Us^VWJ6)ljbF9uvsKthPdfC; zLY07i&RG`|aSMY^(9d}$Xx6Fe`R-9C?1#g6qwjWy{ao!uAfg-|AfWAC-mTY+-JUNS z`sOJiz}1fUf58`fQJ~TOelI#SXbQ?P!MD`zCJXS`2poNueNSzd|xlp#lq( z9u;$NxuF`S8;Z+_Mc_Iv3t~TXA?P9KpDS2AJfdC2j`VXjRYC06Ex;=hg3pnlz0$_7 zwGTS>&LcHmPX?O_T1(C~$O*26SP&nfg~5TP5G{LFA4)rg^hO``!AOd>;4DB;D9HCn zc%YoLmP2XtwzKrf<~3Fi6lqfI27>?5;dLq$#eDlh*a`L`)6M83kqYidgM8v|GF}Hb zg2rL#suxr!irH_<@EMK|lndQE#ujn0cM3&uJ>NnvxQTdy?Ft_Y?Jz8OMH?6vu5D2i zpMok#U=PSl%LGjy(1;W`B3y;y1#DbcxRz}(<=vrz0m)74Ca)KY^7AC@+%&B3&CY>^ z)wWq>$BB8Z;XHA~gJ7OZEo^KBi_)5k@{5cQzTBF;Y%i>RwoxISbH$0{7KQNUsG!qW z4%(~L@C<=9Gh?}0WL7L3)$E{iMpX%_We@kL0bTXa#{bv+{F{XTHGZBU{IBu#YiO+N z|9=tr12lerAB+F%{(tW$+5d|C0UB?A8~FqD?>~d^zsBqDqOr!~+8?0Dn*XolD^|t# zO|jDny8#H-`^Wd^8sJ^?^?U)YFxz$r8$0grVpV(r6+8V9p)4-tHmoycx*3H6wl|x2 zZz70|V}WfuY($5hTdayNqE^^RWp>f2(29EdBi^VTk#WF)lZu7j;!H4Gq`g=bQ!a{~ zqqdQkP>YgrO}fNuJQ%!cBo9NOb}&q6V=3)Qw97F)YdbM^$QRd7+`cK z02bv%*NUB!+!mVpaV1ueGSExrhR}|$5B%_>beK(;(NOZoM2W=N@gZ?AJ35 zWE#jckZB;(z~7Vxo=9J86dH9o&YcwfiEzl+A&e~=@*ugCAA zv5x;gkMO_#{twbv=lchQ{~v8H zj&kg#x0(9>Rj~utk8XvzX8|mo9zUDg(M82e81#p195b^>`wxbnE>c!+4u-BA9jn1-MZ8I^cG7J`KG167X$iPTot zoX^7waKv#q?BbsIEwRT2>N^|eo~0gwp>fuXULDJ?XSlVS)+2~d%ma&rdB<7Z68jGQ z=&Y062Px;*^l2IpDXm5{jd11g|4o?-+4p7|$TW~?Ak#pmflLE`3pDT~`WtNV|2NWW z$AtGEr14+USmX0o68_im`ezZ|*LeL=8b3n6-ypoN@Vol?Pc+t_|5C#HdaUySG(X_` z3IFTY7l{9_zyIfHtmMmI5#ybFyNA|V6E;oCoCBF1kt3^JT(54VtxkYiMm&Rw=ZJUY zuZVF^9@u+q`I3+qNfu?6G0+;!P}tR{?JjWDeb2j3m$u4ph>iC=60H*qgp?|$w~SGX zoyD$^Ztchr&TohvLLM5mA4ZW83cgSyy>#pvd@z?T#p`lZMf@a+45mj#(zl%Kfv}%&`Hgu7j(PuP#V~t$CDNv!HX-t{c@Zu*z5|GV(AmWIE;w zROvi~s`3rqxn(pV^i|oqlc3uT>FCW@ z#e@#kYt-iZ6IUoqA3PwriYcqewV(ORxPtnvOgF#P{?!u#4k@E#g#K0%)FzUB-3GL03!S3ie@ z_qDwLjmBD@Z=w8u{du25`Tsh<;fHCg-@ifm|7x7SE^j4%^JXVBGuEapavvueCkfDq zPddB?-jW%p-_2r&F)ok!EjsRSI}Kbk;dJM5Sf}Io?afyR^WFJ-c!*yfv{8 z2A!X}Hb(4uly^%%C0>>R*1H4#c- zF>){R=sI_R%I#K^oA+4W-6|)$0Oh)B$a#5jij8i`=|?9gCjD8`8Hh!A-Sm4eFNTt; zZ6CVK85QK>&2vsUiQ+a(#9JOAp5z$>zKg?8C+h(&3H!5?i z0$4iyE?)j3N2JXyq%ua*9S=ypR-MTQ7b=60@EAC9K)k%TRS8yO2X$5qKcIBW@PsON z%K$GgcCmSZt=ZQ-RpNK`*YG^CYt4)H_UtZ=#&IvYX+3lr6;{InwFB5P#G&Kx6nLK4 zwdM_ad%=+rhmg1@l@BPni?L1YjttL}pNUAf2=`IQgxeD1F>Mcw6Um0F@a)act*_0m zF3&Bkt+DeExpXTFt7~&enVMf(SzTCjc!xYsehrR_!{ofMdtgbR5~Q%Cw>HcPhojAt zmwv*Oqw#9Yy&9`ghjymEu1C$%lGE<)kT+gFe z;eE{~_z{Nx>xB39?|+!akI?s>5&nNGjXyh4|F0x3%3caO2x=!cVue1q?88@OA7Rzfsmi8sHWKb zrn^AH0LIP-J-{igxK0;z8lIj-k%6ng1rZcB7GLfYY8a$5@ zSoq4E-iOBwZ+EN8l042?!p^bq&C9@q{S^MEL#Ui@rfqPPv`ibZ=>F?Uc!2JuJ{@fD z+xBq#>9M<6g{5tQ$@)=p+dNMtd0~ywwy}sQ*wx@Av0V*F=y27Rs$xF`)}h%1eN;;U zgda$5MXB{BORWMXWgbv>wX9NA%=sz7m&4p5bRSM%GRxR3s!*tXn#CSkHO+RUKhmUZ zJ+ec`U6rC#6{iW|P`tet^`e1Upf;AY+V1X09mlMjCnT@Qhda@EM2cNdN?6O@Y4(D2 z&mua3n%m3_vQ;8;IT*=m%N{ZfWE#jckZItt)WB2d!!FIBs6G9>3y*;8Ga7%F2>0A}g#RC<@fQ%@e-n*=h{pQ;b;AD|&wqr*+TYM2{IBEn{~wL@>n~5>e@~8= zRQP0gWT~houj|LW*8ul+yTy|OCrAlIWHA7z?yCh)JF`v^H*@*_tKw?^prf~YX!kbp zd63;FRU^_Q7yxy5d-JMdG&iEnrm1abgVuPR0?USyMyJxhkQx5-ix;JIU)9_%4k zXuK-sHbHy0LR5q|HoX_#PNpho@ru{do(Dw6*&;+i0|#REs$y8;b)wryK`}gvt)SDl zR5EW>nf3tR*~~iJh+b9P+z;%GjsxGx%KbA5K`n5sJ-U9ghfD*R1~Ls~8pt$|X&}=; zN&}xwBU}7mZKLeLeme8teBr3GY7`zkTKpX#6S~pAg>H`2$ZRe6Rfj zZ=$h|-#?%5zQ+H*NMrr^FQ$0Ee*Hhw_zr#F%P9V@-~SYf|0{liSHB3644m%(B!3Qe z3gN8;JD69mmaMi_OV$i(@wstmSnP~%Y z1gSdKB!xm(JEu_Mj$J@$nAXeaAQ$#7*Te9@M*L`;#$hh28XHZP^o$mkY`=qs>mt+F z#ZlrB8yxiy1LHVqNZZ|+=aQ>ZfL9j>iem@Hs5pdT(vN3Z?v1mB-CY^l-lm)z?#P#! z?sP{%4P$w_4);wt=^B|bsKlAWiRdF#Yig`CS!o%cwNs={6jG6*hA1kQ=@2YEiZ;DGbdQrDK?6r?3MN4V<$=Vqj{z+FC zEpJm?4AzSV9bAW#wmo`-oD=>xT$G?gvDgG$l+I-+KP9bGEMP~mBOJ5taI}#Lmpx<} z$TW~?Ak)BOtbwP}=Utk4+W3=SOn6`O=|4*2hv^+JC%k`$#-B&{Ucdfs8o!fX-zL1T z+kzX8f*W-b;A4FAMpD$*57xF@c-NC z^PZZ>_g7E7g~s~(p9g9L{-l{V(EC3~W9`pqerEjoo9XpGrm_CMmpvhVUCHk^#d&}} z;(@AvrZosWWlt#8jyHjsfa4tZt=|;ed#EC=YPwzSgqIy<-v+iegoPajHxc!Rp_h=k)~O$z9`(=* zfD2fUPEm~U2u7h5an_s6h(>@qJ>SrztCG0i6nmI_l@M_p^=_KA^J3T1DB=9Pkb1qy z0LGsQZS5d5at(-2R+t%>5)WSTW2t`3{k0pk6p*r4{|PQngPA|zUzjlpU1S&f^T z%-t1xW|Aw@9a#69V%CIj7tRaQl_f|zufX;Vs=P5&3^-z^O8HH(XF*S|;f>pl_Ky$1 zOBwGcl5g8*9C;gS!sS%*n>$j@iGSQf4^MkDZgH;#wo%;e{rskwgN~#8;Gh#G7o1*( zB9~WONg%lzQHIiaHL0o#7$qcROcaLVA)X^|!{3oxJ%gZ|D}}w@@G)z`%)~_#W~aDv z>!PC)H!!XDmL;e{0O@U`65XuJaYue{4>}gVlC0;I+2z*7KJs_OK^5*m8t>|!Fma68 z67Yt(Hua9!KQ|IGFioHFSwxo%#)+~QsHnqCGMKwgp~Rd)e{k9bK**I*cG)-;AA=64 zu7oWA>bm&gLA$20u4sm(lwr1$W8`4nC0FHe#v)&1Us>S&OIp8uUR*7*Gy4FCTijo(C{P$&Ga@$&D|SmWV7 z^9Ot~!~d_MvHrdr_dR0BY~_pfrOsG)?{3|+dAXhVoL-<-hd0ilGl*$odk&lSW;qsyTS+n%noG$AiLkYEn#EQKG-wMFP7f_q zfsBN7*ewngd2L&KBG#ZjQ*-Azgp2?t_A^_6a0t1MoNci`qZXpSp=l{e_6M^;&Qst8 zPQuLI%*Z>aBYi?Vd0D>(Wyu@;%2%69;Gd!_rFE2am#MT;O#9a#m_#jQ*LD=3O zIry!<=W3C4Zo$S)pDfCY?=Te_V*X1FC3oU*L#}b$zL|rECFsCG5Oi!6ZYS^Nd#09W z$2GPMOH2ZR(2laD<_Pa=JpFze>v(vb@V<_( z|0a!fJbg%bU*qd15Z>4E`8U#7zrN1!|IgC+A(HJyg!eU`|3ez<@B3E5``SP7xrFZ@ zq2GTujqlL7KzLvKBYus>`t$cF{;%cz3&sz41;zhghtKm0p40&big6cy;=Q5b!g{FJ zH@=+68#W$03_NC}AkgRVV|xX8as#l9y<8Ibro&{>ZW7MlX1%s!Zb8yYfq)Kd;T6R0 zIj?;H!`))LZ>VO4_utnT>=oL#NVtt6yXFxGPuuN?Lpqfw_7b3fL0oG8{@j&5CO10F zHEs+ijzXH>se{g_YR{a;sFmQb<-LN~Rp14EcrLtAr}weuNXF@#0~kzGAYTX0^$KE7 zf!Aq+f)A|A1-wA0FFo^$6X9HzVu}IS?a9qC*5Uw>i>B%_2)H@^6KHidnr!Qso$Nc5AhJy`aN|Yi%2TE1nI4=&2)u;T6Qd(rbsEgOrv?hvKUCY?@)mJN$rN zLGDadI~>Vh?VgdqFy;B9oEVA25fkjvVNssBFxWe@G=;sF<|zym0j@j6m0yIRqXz%< zE0Vc7&dC)h%8y4C>%lQTv`5uERKJNyS$ykwR~WMmB{-n9#H{1&S#~(HyrS4!>4la_ zkC|BcA$UdYM7a(+dg^(0^w{E)&YQ6)&qsrq6ZTHb#y-=#W_U{taCTh#x_FT~JBQ#0 zj%Sk29+W#tJx$v4N-UoS2RGX&xTu{QMSi(hYu3awe4baeZm9~HK7P;*NmT{1x%IuG z*sF?2Sa@QRO2j9)v8!E7JFh5qt$Lvfkc1NlK27zM$2Y4x?9QqotdTur8u(b&z~_>1 zmu3KR>E{j}0pVxfOJiOCPvhYalRrS??Gxq?_;VWT{QlRIKS1*XmI?oB{QWaD{%QKY zuO){#7w1bEj2Wgcx&d>St-lA{JA|qMj%xB(sIJzCcr|yf- ze0933EYHBwib|Y+Y#1L7P*L}{q}~juE(dn-&2WMsH26U?n?xr94SGy}0Xy#DE^q`4 z>b{tIt7i6i&@&Tdr#$Z&Kh$mi)_rj?wfF+}ErkDjvDg{>!42iO;Oo9Pz(x}Hg0p0? zH=6HSTk+R(8=-=`;~hrRUc0h^rxJuX5Q3Rae4eCYituPz_M-ko5R$SQo~dM-NtlZS ztQJ`hJRmb>(>YTT>b{s7JUMZSC!L|eGC)2645`y&>VFuQzbFS`?{L^t4m#B-pgVZ%_wS5GGc#|evHtxH!u$I7e}l%F4{$>GUw{8!(^&f-UQ7M}9p8U0 zPta|*r{#Xyl2E+^60vxE^nOF8qjZ0@9MuP7#rDp$2-nuRs| zIECPx;&UZ29}^9Wk@cuTw>dvLIWf0Q3)E4NTzZa@gC6q=0CY2U3wDl+@lcYpTNEy} zF-422+s33Q7|nMv&tl*sDr<5n0dK2^)q8oR9&S#<^Yc-VCVjXHvQCAk{~-0GgWu^XrD zQDeQa=%mL+vy7(_j=mM69XUKuF6rc)mgr#Aan9H>nt+w>9(BS#g7~8fvb)`3KUaIv z;PCM9VB|#Gt=9}ETE5JJ<7T^2{0WY~foz`aA=5ynflLFL1~LtNENkHNNVrQgx)R{b z%ogGOhv>E6r?HOTe?8&-H`D8%PxxNr_aC6~Tj+I-_ceb1UBdeh)9WuGe6PRnNrdn9 z>u;j5t_QGA_+Il9euu_dz9I4bb^gMq5WipZ6<$MQ{rUG3zh94kipJVM@c{At_2+$< z#&09}zxFd@e~Etor&GPZ58!pLB#x+$8rIoBiqy>Jd|l8GonS@Iqw2t(wn@2#%1p;O zl=#jeIX)GEB@1zDgT*M(Hj()s7H1Xaw?h^&1puskl;%;P=_{xxgaX>385N$MhR6tD zmth+^EJ3flBqdX*lK4l*NhC`C2mpc+ZnXn~ZAMK2yEF~408<_6EU(CA1O<9;lr)g5 zgn`M-A3^@cz*dO7)iC0a})4whVgxeOtG8k+X+Yh=VW1!BX(bV&a?^9HByoL5fE2_wMQFAc`^dFjqQM zPbp4HsZ=%Kbjf5PTMkjz^vkc$@o~Qu9UU3`ADJJYmui6n(76IGK$i}KBg6M2DF?tD zR451FQsV_~&Gx}j*c&9OXG-1n%qaz*iR)4?%VQvLoAr-+mReonYG>>$f;Y{17RjRv zXfiZ!1I!V7eb?`xyIjnTdpOqQhHG`0j7>!{^fl*~{9kCS@%y(D{@3{hPiOf5%{12XKab`2{}PS$?|&uXeJ$Ug&{)?W{2Idl zAAmetc`@H$D`=}MLw7J}uya4#?qWRy=kJs$Ru*?w@??&MxL9uE!<2dF~pU9L5E3?NYB z`R*|lA*toKdYN5*aVU7J-Gi3l`r%q`Or4pMHXINEcICuwdEyB0mLelW-RB~a_(s@0 z4g({GIei{9yOra*=5{rTJ$-QK^@cfAEitNvi&CH&mX3W?b`ixpzHzhN>F*gw=y|!Z zM#Vum@=`}As5}n1vgKc3!*}-sR1W4V@v+PENXdQ~HjPtwu|oytz&>U_obY3`+4vY{ zsTlW{t2oD&FFy#>AJ9I9XU*7RBhFkkLM_sS+l{WRB6nQG)mM_|70z3S?YQNOljOIM zByTa!M`-a3P;tC?G}WTTP@*km$(2jD<;%?g@Mcg5dn^X6f{ku;mNH=Ut>0qoDID%> zmQgIwk&Cn?PxZqxZSN1-6E%^1qSlU_JcU!i;SJc5XG?9h(OkngrNkXTSP2o_O3q1^ z7X{ji9QB{3?e$_dUdFBI@Ii0ME3jae?Hx))Zd2~AfPdfNI@>CUZ= z6aEK{HGY3B`2*fS5qY&z7z00o1Yr-Z zzok*hVH=e28e&U*R3FCTY97l=CwKbTj?4WdEkpPV93Bm?A-2E~AMPuHI^g114w_Z< z(rJVm$bS2DhzRodb&}I-7~}xXYd(j6-4GkGDrNv9C)YTQZWytxIPg(MucUKIN;k>| z6I=1algfp}4zt^9$ODEWCbsevn9;%!JSYshXq5%sTYYiG!j7>PaAPOM#RcfN!@Y() zYKWL@*tZlL6nD%}1cs!T@Oe2vqt_67HPI;trzV!>*}d^?_+mXL?$wZ|CdDLtYk|p& zY%DhKSf);eimggjHZ}#b^Z~%1*BifXn3lZULW~#f2d6w+sTXwB)iXYTNIr3~nrZD{ zuem7ZE~$hnC8TjO$u|#+ZbO$21mQK;<#K`s27ZWvwJT`mV?Bi`dDbBX@}zh7yo&=y zR#oFX8`J$1l(1 z2=8lufzAhbKfV4{g!k{z_`fiJz$*#=e@E_OEO(H2b_^-6YVHc>=Rsdf>&f`H1#9lG~HoL#l z5)(x$?cP~1FeZEZIO-l81n^4?yHOVnQ-j09+zZ*Wc+y}AZ2N}8g0pbl7_ib3yZ0*5 z*;y1Bfk7etM#ZtxE5PNUs9X~t1m)n%7-q-Q|Pb0jq1#yZ} zefH1MSik>;g!gqm{U6X+f8Wap|LgkypFwzEzyEbKeuzGQmg4=|-=ORN>3sYRivO$6 zuT;d=H;hLW{|Ch#X-HP5LHrJGO;)xUNgu3t!^m}6-4!`{CAY>{3~fxJEW0&i(7M9- zc`$DcexB0^uZSap737K|jmwhqSO|N2L#vDhZx?@0iXWx8L`kIOPRXoP!~wwy`n8>b zDr&@sqzU72OfW=<_=|(xXyzDard*@L+{%F!MkDM0yZ5ASemm;mo z6=xx~$`x_4I8qsUcFICyfc}lW6dRXBY}8p|A)0J38L>zm(57-l?h1^0XKgdR0nPl9 zflM7x-DLX(ZU~5yT#IgALgk8>cdyz+=9><-Y zrh!ZYnFcZqoTGvNjb5|G|KCBc>3V<~U;hsI19bkpt_Ps&|NkZP2fUi_zxEH@Pk3MR z_kWDWcj)^z3IFTyf1t6(`?m@ItM9Ki#3ih&2>Z8HW8YvxmeyQFq_>@d6Pg2i6%eJ5 zu;uXt3TlwzdubyU#aUQb8hLFF!f#d1sD?EN1Yp)Mo4#m=YDJqgaokzr)rQzTQiUqp z6D5%*rL_u`#hMn;sX%d}b+z3;LCx3wb&GA!jP0r5V?Dn z~cFE*i+u>z8JpHh$-e3E%5{ z{Y!-B-%am$gvRfrahb*U{~e9Bf8d1hz4j+Of$+Tc2fUHSiqEfpzMSy=ozZA!=9g)# zlOSEjdi_&ZL0UDzyBjN zeh+=$H&OjR{r7w!)&JN2jd##k)jRN-;#jXr{0vX`hL=0x(r;@Gpq?Mq35-P^@s|N9;b;jbnT~|ayu4`%Gxh{nt`218HO0|54~0>?0czLv z!m#^XAQuaVxfz{>JrsgC>4c~KF}@^$o2^RPb$}2Ja|^i(^>|HjU`{FXC@`4{qe|?K zidL<=SF}R-%Mm>EU7F^fuahXzRI$?Y50mB3nq;# z>Bnn|vuiNfaL6Q!meML{!B@xv-?Y*f&x8kxh*+8=H8C{ z+EX28EwxgoRvSB=QIycNQ+HkvnG8BNkIky}hG$hEcA`kG{HVT|iO!}UX{N6G`Kmbk%nLh5z2H{ctP(b|e4XW_s+POYkkiF3^sdUm zk19TlJ{br*aivbzJ{(-f^xUI1uCu|%RdFc7i_lQ)mMY1l>NuakG_x#J%PacIxx%g- z7>f+$AX(Qzh$Q%VPY=(a-?sJt)A;ze$seHc@omEYZ=m0O0^xlk^n#)~K8vZXnFN%!CcOoex5_ z4H(PQshQsf%5)iC8%tsv(MkJuxxyNoEO7%@f+3;P6}GV~mQc0!gpF-_MjF7xsfr|Y z3N`X9)d|-a<~8lLaqDnZETL+gWjTkWh|}`@jbNk@Nm@=axCifogCON?$nC2T%`qOE6Vli+ zYKdB}MR^*+sAumnE}NVmDR!ZGc^3w~q-97GUf?bVBwzaS`XRPDCQD+@FH0z8y$S%a-aBcNO>M7Z@~|Tm6s3>ZaC+`Eq4{;;6|So z6Nd`KV{?0+d~&<7hhw{IsTT!iS^Pq-1R7+bsN`6WM!{VULe6QKw{d|Awos%2=cH#h zJ9R)XbM0nv0h`fo9#KY%mX0A)^0pYa3{4PROR*~V9CiXM#l(&vuO|Eqhf!zZh@}ax zmsmQH!F+>F>r!7;?mg@TLre6mj9^ti<+>yB%6V4t30a@adH}=Gp*_NY*~7&&a3B5J zrJ1LUKVXjVzQ)r(N8>y6j_ZW~_4toytnvLf5dPPA_{oI#wg2GlG}idMKzLur=RZi} zx6=1@2>)w5{>g;*_4xZ~to;?wVR-*hHoii5U(54*G}iux+l2ogrSJa|!u#64@hFW| zeFE>Qm`e?Of2)m#N*qh&dq+bU5HJ{X-XIazrCpLQv$TViQTRJ?+g%1V-4z+VDyAxf zc3|1Wa`23Oo0JiEwBwv^$xUqZN3@h~6IYxzEJN2>*pmBMdr@$3mLQ(%=wj46rv!d$ z({KwaLnf_9g#oR0SL*^m;0z!jQ8GY$pC}lg5D#8gr*v`*5S>}7NnW_WZrVgd;B3hS zSLC%t;py$4p0!Qn97g~o3BTrqySgZOEpgg3irb^RH`+zyT4CEbiN+@r9X%K)N^rp7 zXB!3qK8K6iYsn!>98A8f;whJ#XXu(V7H6_5Pmc#Dd-fUyhw*{vxKBGPSKKsmt^vbK7&xXp&#`|H%={RV~^RavsT^kKCvAHaNyLa9K}TH zC^GyJ_W++23(I~^$^((nsC2N6)H1E%Z61_P-Ce*>dv=P|63JU@R9Ami_Aj?E;B&C1| z!9y|2?$AL?ZlFa6Vdrd!BD>~p3A=l!9y2PblzU;L-OClw)o*XOf2?}*77CtGb+=Gt ztf9CfbmB@!tz{=uq9tby1xMDZ#$x+&kwv@Q_T@FX@iw?^aWYR2vRP2ZT>*-KM)r_t z;D50O{vLgwjsO29dhIU=|7(2w3c~vupFfB2zK);&D2?AjzuzLfukrdv+4x%t@Bc8p zf06LM<^%i;jkQ0aL3m%|^BKbT+Mn<`8f$#N$m07yMPtRsS3i4%_x0cRr!>}o-**$< z*RMa5#rxk!W8I%%o%sF_#~(lQAsQ=vl;s^y%OH8$>qLz}1v&!Zkg`_Kt2Y@X9bvh2 zS}usHE>clh-d+^k`Jlhoi_pA?U+vp4ltWttWP6i2|8UK)upEwbhmBM&ioxWF-`@$& zxPTXhlgji>-jZ?T(`JU0i(+F~DfBc4=3p}VL1xIb`NIsXx&6@PqPSdQEMEmx^ek=| zPtjXPd?@SU^fnA!!M(m{NavdPk~k@)+&(;1(M~?`aTWcrdkANeRnQ`@;|V~S_I9Xt z>kdjtxg^d+DR&@D&@;NNZ-L(*r_XG(yQm6iWT0$qFdGgYLblzpxe$V~uFjI!i7?tq zhwaczNqQ_geXv6S_Na3$$oG{}al6|!E$68Np({pZ%4KJFfO1LfB#w29Dm3PDRphYo zvjpXedFJ%6B_BEUCx#y7&aithJnS8uO@gvx40q4aBc`$^4^>RQ!?9g1i-Tuse;pyG z&TpSRm6E1u}Uk-*0W>eQ!phYmg&6VRdgy;e%=p;$8FQ8C@yNFJn)Hg3G@xuc9+-h z_Ck1U?5dnHrq85{uK?>^UlHF&ekVfOjo}O9_fYzLMAcHp(g1zPbqmRhb<+|IhBoU{ z90X)0olDFs;@wT!Fm~g zf`h)E_r=yp{+Yh5ecIHMy*fL`?j{t1JVQ!cI3m7bKs$TK^*1CAM7DKXi4fhjg@G{LX9R% zK>=t>UrXmGvLMDnvFUD^X+hOQRW%}cVuMQW+QkL=rP4c4i9ETHH|fiA`FP0p^wcHu z*?AKuu-Z&Hx}vj(Oaqw)G7V%J$TW~?Ak)Cq8u$`=r>*~=#``CP_wVRWC48^P-%Vrv z{v6?b?GJb-jWynXKH+`M2lx#dYkxtT@V@^1zofB#{U0-az!wo8K>G{cL*rMIyz9gV zcpJvv17ZM#QW>2vG~$L+H(66m=%n2lmz1{|bKV1D&nAkGbgkCAj7w+Qn-0gO_kh^> z4*glsg_!8Y0|aiO*S6S22NaP?FeI2eeVZ^g#fSztpoO2->3p1 zOK4}l49vB2HHw{Sa5}0ST}yqiR=d{=CbdAcFKwH}&0~T@axJ2hr^9#ZZOhB2sB|ER zXS(|&E-RePNeSJa7H?agoQwTz2|h~0DeC-7%jgP~dE4S(lp>NFg{#KC7Mfa&6QO$e za2I$<3iSF|T68(mylr_QupXLwBpPy#x9{j_XGtxu!5DBjpVt;vdH&DB?CSiwtEdZE zI@v>}flLFL1~Ls~8kkN4f1loVX$B;A`uPAJ0oi9Xo^BHUe;2*}|1y8Tw-NqV`S9xJ zX@vK6JpXMpR`^@}Tp_%#$N!PW+Fvjry#G-A_L38z#l3wFDR{fYg6_Zu%q&AztOFWsiUWzN%p@edjQ@d0f7zOsCXFc~{$-lt zF0`;I=7xLGS&FH8L8U^Vq#X(Ri-Q>8ZOZGsM7Q~zw?GZCg2C1mh7{m`U=xmh1WxtI z6XYO>xg=wP>hx*ksKsR$|)E?-6M;7g)J9(Wmzl!UQxxrD#$vNXhK^$ITJ3dpx`2B0KsPkpP$w7^MHJ++eb(3Zmwb>P*3lI zOz#|Ln?UaYxl<+R-k7k?=p2XN3|Zx1)lPOj0q<&_rJ=wr#r&fni#Se7y5h5kOaqw) zG7V%J$TW~?;D4e9o=Km5Y38%X-|~FI_c~txD>VKtddCjoeO<5bBQ)0W`J06I-$?KO zG{X0HX#9FMo+Z4m-~Y2TevsaOo$&r6H2$wN*7*S6Ncdm-2R@(T{o4QVE*k64D^UKw z{=VO0^#MAR|F8WImni>VzyJGatm_A?Q~v+^AfNBaQD|^G>{=51WEPfzMO`#z-xo)q z5#I|fwE)NFv^C-aq|U59q|Dk)X5SZwo&BJ{AMK4LAft4;{D`=3U=nm7#^;DZ`tsxr zAL$W?kt(=k7|n4j$FbC;H?LmAQ;A>|0zf7za;Z)XgZ&XBUFC1sS`P@~_GV)-2<`xH zzC1AkK83gpz3B$oK$sUEhlzeklN&s<1kfW5f>maT!!76gVib&G-`KdQ`F(O?3RwX{ zwgRL|o>x9dLtxYia`?D>UmPp-NB!+A-PxqBBs1|$#VK8@Qp^&<8M7Z56~RW$EIrhK zw<@ybF@i?yfJyFbcVS~+p3Z?ZqEQO*sHbJl4?u;ml=j?6RyNZMlb6>r+7iL<;czJU zzS!@9(-9>@P-E6e&o2d?8`wPj2rA{7cN6Yxb_B()M4QLMFDyzMIACwz3T?d+lwe0-%=|sge*X3$CeVp59L(bc|aDl7vAl#cs zq5U&q`x^wPZ7qV7pFI8By&EDgJ7Lsjdsv|Bf7J=QjvgBBM#wovlgj7>Y+ zDM}bDd-&U-foIX5acSmBlRt>?zQ(_=rLo4pvxN6G-~UHxtnv01;eY-6zfWWR`(H=+ z|0n4i7e6`X8)*Fg3pD;&di@&+@BbK$7YOg`&;J)R)_ng>!uy&}@Y^)j@9z`d*WdT) zg!kWs&-V-BK)1Rx6azX}vGF>$!-Kt1vF-7$r9*kU!0P$O;3=^SQC`GlUl+t)2HYI3 z@;4VK)RsOiP(;vWa>-3sJO8vWNU>5$hlL%+fCd#d9S2j_uhTpb2j%rtkLU8D#uhKo z03*hs!Qz70wnnjogMO~q+qX17Y#jF@J1TAPuDQ4a7zBWk=#o!|I0}ET$w;B zuJu@yTi4-95cYGP*}~xp+$XAne!h!pO?~8kj|wgCc8C33?L|n=I6Ua88+f-~Gj8B~ znN<>lLB?)iz-^aHN?!C5n?F?bn5-e@8X~#JXbY97?nB$FW=3*VG4;d|h3(~pTg3}_ zrqW{2?t=6q_>W!%{nJsU9QBMvUcbUfS%}iFuFcQQEw3%FFRn5TFU+p5uCA`l&Ce~a ztSv6Bx=J|uMRCOuKWukHRhm2ZER^}lJunD{&*o=_kJgz7D4K?@(W8Yk85_&RFEfKJ z)_QUtV(*O2VDpP|`~5iR!F^yc;P06r}|=q|-p z0t%?O4vdnxR0Y;%=cJ#iK0@nw+KR2L10bf>)%9p zU%&p@g!gqm!5tcFK7z*odi>Lb|KCfW_m2qg>)-!V8b3m>e<$I8?H~9;!vC5d@NPCP zQoLW+FZ>{j|92_=um1jxYhtT+qYJ+{oONigZg`#L(3}+kMS*|ile8Iz8@pobVPgoS zqcBgZK_M9t(*A`Ai!dkjvJ*^f?25}aC|Q-L)d&^hI``J{n1x1A0Nw$FH+IDp9F&~s z$!tu$pgbY3@(%eN_Uy*4*h#(-4$)o0bdh^VVjh99IAk{}eC8rldwEtZ&XzpkvT`?e z#pyDmb$VmK&D^O~x;Dz>Na8DWZgRv&s(G>Rql(BUd^1N87w|E5DWst~niM!J^lD!0 z78(5ss8Y)Rg7Vq03rFMlX+mJ-mVsay%0cOLm!qzl7snd`_eMD$7S__#C@iHt*M_R* z#fPX;9SC2jop0=Uf%cf26WVj6o>cSVLKI5E!=CEcat{*n#3M-PI5ewyaY{l}^}n{( zQJA(Y3cQx*;qtIMma>-fQenb_~}$F9t&r`Oh9ZC0y!@s$L(rme7hqm$~GLtCc7 zX#|K5q-0cAyQ4BiH7`Eq)gPZjy;2M8jt_X(*#az__)!)my)EHW}ZBj`ALNLb$tJy z()cy>jxQnnujA=D{;&N5EyDkI=>304V~wwM{9k|mXAu6^c>H^5to;ekX8wTp(OBd8 zI^loKKloi5Yy2M({@364mo(P?hHoc-fPVdR3ID6VuTT{`uM0q%mRofCRygcjMY5#h z_AFGz_frM*vBPsfmaNft z$C1Hnd(kOq^S$8+4mVDF0dCjHd&r(EY%>guI21eh(H+HM#20E};y0Gz$-wOGF1_TL zIuVR=fXG5kzEi^eV-V*JLfa_LTLu1TCmOVo8e3I{Byn4^4TEr=bIQdFvw%qcX|gd3 z*&?+l*-@Q@t8KHm{;JV%6W6K3+AP$?wn$;nO~t{-7Uv0)Pr`{_HKf=yOm!B{2M@uu z0_*bK0y{mj@Ko=qo}r7{QK*YOZv_zbO`tZzaxJ^MI0Rpay1~)$ zekbaN2DN+Y%CnqPvNAu*W;Z@x^H?tJ{ouZr7V2VG8XDp6_#V-p(=4fTx82rksc zm=QC5%k))EKhumJ>#n3xsEco8DDbRpb_kgs&NA;Wz>Z6Cn_@p&0qhFk9gY;IcBHNv zK7N1)hts04DL?5kJDJ=^%lkdHD3SEG`=(X?U|XE5&nOe#!n->ul)yarLo5E>xB2U|KR6ntnhqe zR~*`EL}y`dZAyyo7;FQK{1T`?InF?D7NRoO^sbK#Sn>J zFbi#6FID5f1Mmo}iHUiym=+UwliB~k&vv7$AtwuKH8d0{>t75QpZ3~= zdF4oH@WftB zF^+q=nyEL;X6ih176B!ApKK7Yab13@w_g&Dvb4M~FaeDKZKXL&ZnV|7F7}5ty6u-F z(|4s?8{Q^(ijzAA!6k?9xVa*}cF=$v-lkwe?jZT5$I+}kMO?1IHo?smF~)D9NR1KX z+EyfnUNTxtyJUN_nZ66*`AVw}{AN(0nNGCB%P4XJ>mVJal;u4Sha-m8hd+^BzrDCq%GjGv3|uuxh@ zmi8Iin2oV3Svif?M%v1OxtbOfH3l3uwpSDLMiJOMNxR<3LKK+SX#>{nkoV-#dnF#q z)f=9OX-1#rWL9XTLmC6ZK5c2ZKe2g0j~xwoq2q{<}+ zbiR>@F^jdMB$QUg-Le^CCDJd;R-!&Ev_2(#MX^N}C|O zn_iF*);ZbY5HzZ4T4f!}PGY5xLJ+{22HgyGuf8mw;jsIX&@6a19n~tOE$m*0SJtav z;I>1xhsZ1ps6EHlLW_Bi)mcG1J*GTxyd6T)t(`q&8pt$|X&}=;rh!ZYA1fNTOoG_r z{}0h?hYaukcN*(__?NNx|I-QYYyZHTX{`D98vnnUKL3M+|FwT$pYXn}uYZZ~{cGv{ z-%exgZ}?n__iMhu5777#ygy$Mqu6}!;4n0c3P~xA2)(d4Fq{Goc3Hk4W|!qV2UdOp z!XW)*-8Zs*TUA!z*;eq^6;RL13)MnA3%;2)_m;I%1T=JnV)F9hwE2S*RL3?ctIe>Z zs`!jJ{H9#ga)>HA7>Pp+}p~CtnnE zO|YNgXl`3GN`$q{REkUb+;Mn&^768OxSo->0TR?iVWdU*4Xvo?NjZ^{4L{Idw}zmb095gOm2@jBss zjqiVr#@b)-m4x>-UjOej)}Qwsg#Y#DRjf28-R5aJx|z*YMeBclu^0pbNy0nOOuI*luNR$g3kL8HcAv zMq$jdM`aoWm8~JDdX-Tb5L0AUraOMOQ4{lpH^LJb>lQzOsDi#~kd`zsku>Z;6B{+L z3kY5C9Mo&lX1lu|bx^#|(xki2)98U086PU$IN1#-|T&8b8& zn*rnfiBUyE7k#~Gp|7*K27TS(?%Sw|2@R^_;R(`&gRsMuDCXI--3>V% z-nEUIIH!K3POQ2UF69-KfxX`u9!$V5;oK`%SuZl|YzD$1B9v>xxf`_$oRTWLs}_OH z-cCqEvmS39C;(jRW?|EJ^Y-@)+zGYIc% zeEmZ-*7X7^g!i@o;6Kn@VV_dk>H{vDF_Q5x&--z2>M6ZHDy z3GZuv!s}_Q-#5~9!_1BU2b?1(P<*Tg^@65h4|Lvd*-GgZXl>+`RP zO9P;;Lf5XvTM7ORZRbMqYI-{ZN3$tLp$eyP;=+!8Wbu`Xc?^o~lLpt$KH9qr(i{TZ zES4k|d>wMYoK4WGb;i{P-e*KKoQn>3iod%e7E-mE?&OM{!_YXrePm_?I5Wf82^lv! zEC*rlaM)AD(NurTa%tCWcvxdaKI8H^NkwBVxNgZ^akX*PPqH)Y<|<~FPgJovbl#MW zCabj(SGrHiiM!LaX5}Sy{7wMhdDOGyu$|-UtzKc;G>9a~0(7_l{avv~)sN6T(jaGy z&wASK>Ah|g)4YsT>+q`h@}e{&y(Nwux^EC}*bl5GP}S^w%1djYRFY$2$*jyCG7V%J z$TaXVt${g`?$XRt#&XUP-q-Q<571cS=N-cPx<0_~(^%vEuP40!5Pjm)2=D89f$yQQ z{(YbDzW%;nrLoQz_$tEtI==rGG=7*q|CNOQ-$mmk!uvY^;HPM;{Rvxy_x0cNf6-X` z3tmd~|MmE(tl!@cCi(%^Q4>39h65i0MJ%+Hk{;t(@nXx$+}v@$VlT{snuC)ce-{D^Ea@ZowHF-(z8Y&BR%tlbs z6l=bLoXQkq-x_)X8LP4?gAmL^1PI~UJe%T5bC_&P)=Oh>nmm{2cx*Hox`88zfpQQ= zT)Nv7r-#*|!^2?WLes9R!O0<7tM^CgLuGheqq78-)Gm(lZW{KW;c2?w2~Kj=vD~^2 zH^l@Y#c?DOJ;2e~ova5Ea(jo>YczB3 z;G%XJL7U>P47E|=NL4VDEAb*sMOOFnvcnBr+mdhbw(7{d)d^6Q#pKtC7No_&;W{<9 z#6dEBeQ&k9%J#7;RaWE3%rTmClsc_#iT(ezFuIv!1JUA~lCNl7jV@Q^7;@)eQTYXA9+ zq5y9a)R$B!;>8ZTs(4jwK^JcYw&rkxlAxUH0iw9WhAy_m09nyuZ2dp#sybiy2ur~_ z5UQ;;luzf#0g30eCBn93e94P+X~G>~Z^(*QKEKw7vo^R%%(UQBpjBasy8Z5ojg&i8er_*PR4MOuNYW3VtbJHN6rzrMD* z$nqiJYg%4dT$`U;Ut3sp6<}{Q#rUL!7-KKDX$$8F3x~1!cQfW&O)+Ie%|95vJ^00L zMv)QMvAjadpt8l5!O|$wlt5HqtGXi0t){p$p%OH)7zweA;!eU436M%!N*5??$=#x3 z-_m&3kf7ritS$(P(@Ci=DJGb;&f`gp|5^wdqn#_-D0U4OZcJ&q%PG|;GtZOBr^g{+ z$6T$ZIPi%2t(|_D2!JN1Ki3?BRFte*KufgVWXu9ovSUsYi0#y>IJ2X5+&;xVLQ5Jx z`(nolKT+pgsua7xTWzZgd}`#+vQOYPakz9^I~TarPmgnhn_x2)LX;mdmZqdriE(JU zeDtjy`RxveV${7n=%O~{<)Wn@@?CaMxymvmund`A-7$sMj@aX7;l_r4|PDt0%^aVFkOccY2Dd6tsVLK0|B8<^N5tX zznP03*NtmUUKIyr)P}hQ|E+NX3H-P4IWj%QccgXFuZmsFt*CRWZ8M1)rzqQ`jwk%D z878{F(&}vRa7SF~D6zej;pT|Sw64l09DoA>mvNWXn)=85Ca z`6&LS@TN3)sa?)ZfWp|RH zLGvvo^7BFfxWFBkPIF6q95vgv0&#`GL2@I}g;>~Ox#6+q@xGBbW~9XbM>&24esH_Y1Z2}+@GD{^|GG&>SwK800#+ZQ-+2EC4% zr!f|mCKclZTf)YRcCjUz+hQsdjPAZ_0XY_8e4Pl>tLREACZlyP0mWTRydnFcZqWE#jc@IO}rOZ4%VW}ZC$ zq9;+j|8?}t>uId{{g(;v{}{dgTg)HOCA_cSKSOw5^9jC_#=5`XEa870FaJ3jYk$F4 z5Z-^7zVE-$SbzRE6W-Uae<9&}9j||s#yY;gLGk}P^m!kqvGxxPDgLkg2Yy~0XY_-c zmLlELLRgb;=t}kW^Ww-Nf;0Rkm;3J-(-o$hE8gJe#U5x>j5=r^1>M}U6v#Ra+lTFE zbCG>m?08cfo{bka+P&OlY+zcy%#wpmiaUIQ4mPZx7rQEb5Smfg!8APu-c-2I)5a2_ z;0}MUpBKkNu>=PFZg3O~%m_Fr95(KKrOHs_3UBAW>|{Ipd2s~PKMs1}jhnR~?}4-H zY8c?>#i38E&`uj(Dq~d+PC&;A#!r(O@7MBpDgn@zX4e;2nY(;p7B)NV_qn;%)w$)B zwKa#Q#m|dd_d(q5SzwkLiDTcO8oL^9G|Yw@D!(>q#k-v?zITCQcO3*vCLA0>8gaU< zq#i#9N7z0N=;nK3OzuY!`hw)VHY$>uC|FVpl&4l9)y65N7y)C}dyE`L`V?Sbv)ka3 z>!kF=Y%ElXvkN$yaO@>;$}D-{bMefHvlp_wzWcmx8n2dyjBrxYDmtT~D+9kFc1+{c(1-goA+s*V<1jR8f z2GW)sR}b0B*+Zs*Oap&=G_Xv6imm>?=Fh*5;r}lsyszWykJ4Dh)74L%@c*6BXlCZ$ z)A&s^{u;vnZ=vz$u=xK&G}d_jc?|FWB8~Oue-*?3e@bJ`C-^@J|LgZZmGJ%#(D(l^ zjg>#4A*aZV?giT^e1T+Kh6}*gb_5C=JL0;$@%`l^Onk!tF9P~mIx6hu$2E4u_Dd`w z%0XEH^mO(M&u2y<0K56pkn{H%BN}ANEG6^B@(NwL4PK5r?lGM-v2YDTsWua`mmbPGGTR*K#SH10qoDT_) z!(Q967)Pzd@H`O_!LBgLXB(V+7Eg0hR@9|)Fp3*HV%L*>;@Pu$QCe!|F>DXn9F}Th zM{HDMV=HiPFd?PW9haj>t8mG=cf^&+VrAv71|4*#FwV#+3B){`0km=F2_!c8M<--- z)-(OMe$W9$`v9Vkk)QTJarfQgtkPLhi_oj%0J`iN)2s^OB~<7xKGL`#oXwS8BZo1@zkkf`yNNB`k&!LF} z`a6vF43|~hOoMxJU|hJ)$E)JV0wlJVpOHB2RHP#@>x#DG@Q#penLT70$TW~?;A2$- zDB+2MqszD&c$WPk4~VZ=m4F{t}J#=YJ*Pea#2>V;XCDzb+B~S0DLV zl<%+o5pSfit{<>K`Tv@a@Y9KU0M~sng4=@s-clk}ngX7_sT^6A*L^X)VJk#F?f#&H z|MCl8%!_934&0^=1Mj*ozVEkGr#ljiO$8-{YX z3j~+UA0YHm4MVeEMYUi|u`=6}DvXnUZ62=c1u+F3?jti_dOFmWlFIG6yk3w8+>hI% z+8yYWF{xcXb`DNkYmQATTnDb5Q4o{P8>c>3#mJ z(yAMlUoX5snqUC*jlK>xcaaw!q?(878>PTbY~07}xIv9Z2P(f_5IbWaptbyxKs=V~ z;w~Y1y&%uuZg=}BHR(eqLShp*O5=M*yM8T|iP^D(E85{xye@o$jdqEw znhnnc!!~h>DQ2d$&`#Gckwrh(S2~(uDM~hkMn)Dt*AE8Gu^)QGN6P;b(Nd{g)H|*Le3| z(pcl^7m`2V4*mZB!~6r^Nd5p_58yt+{~Dh^N@M+f73L54bs9fNpWh*WfWrINO5z)_ z)b1bKn5Kn6FL?scd0E)m#u1w0@2(g-$rXdTRuac0N~l*Abtg1pIxjan2NvNrd1wcf z$r$5o)mc>FT1k8ml~6Y=IvZapB%6%eZYXcn5of$s5@Y@nFn=G`#9=$Mnc-;U+?fC` zeIb@uyFKJYr!Q=GF_UX$u^C=Q8#~KceixK)DWkNW4nU!j$vRYP!&ukKV(V5(*$r}d zFyX=lsjq3kfJAAhv|<|wVg{!3C<++TAhR8B0M@fvSxZfC6^iZmXfTHYQfB1m})K=#Z^qoz4nR45E7R}TrfPN>KWVSraLiv z$TW~?Ak#pmflLFL1~LsytARCoqb>hm$GhLe@ct^{d;R(^(OBp6pAg>H@%6uEW1av1 zJ@nmACw#B)y!v@3jrHf%Sp5HYXsq-5|9|%01WdB*Di6#l1RtyR#YXTE)(o4ctGc?n zvKEX$vA^n!$cT;?-BDRBgrYKDW(E}*FBOr|*#QWH5nwSaVlm*4!Iae9>Xs}7V$m4T zAQl_5j*S8H0b>vbGzJ6KeAr+F{$~FB;@pV$&b_A;C#wZQdi8;_Z$@O~&GYVZ{&W8G zpD(5S|C5U!-*_S8`#(ivo8Q00^8NoR#s4=S(WCtTZS&t9wVw*TM-RY5dS$oo6}@V> zy@4-Z+=NCu_w}z_xnE-N^*ZWIWFoYN_@=MYx;%;JY5gSY@Vo7ixT7lY40_>Jbz;B> z0&+1$LL^#|IOa_w!0mUYd!ag8+MD#}Qy_fAAe2{M9Kql>NGe-L& z8=eMv$O4MfRp%)oFFy6OR@bqIftS(~L;?no$_Gw*p*lWd910Z(h0szjR3|o!O|cT&F~YJuE)w)Jg-W!e zgCeU?2Y-Y`MHYI={tcrJ+t4|~CwKbehdq6ngwPAs?4cg$FVWQBjX|lC%+rC0(h4Dx zUiW_W<%6@@*E~R(a&uydQqZ&4y{Mj|KxZ$ntwX{yf>@~1Vbs-M-|@s}Km|{X#}e^? z#p$V)KNAlEiHpb^Qk?h_1>2rPLDsQA{8I=P_quADlWDQx=LH4|tpua0nYsuO&X&ZQ zjOUyG%Po*w;3LTbSLu&Ev+?}ppIsolZ~6C6(%9nXi-h+r-~FfA_&VWzo6mnQjo(1O zVMzJ@r)m5w!uuA#|L-)me1p#>yl>+PKSJZT(9b{2>H*$IePK`SeuXFSzn+QyS1hM11W>}>6|I99 zo*)9@DiQK;)7lGrOyqCDddT_?7X|kw)VGF*{r2`e&exsy1h^SlECm4V4?ToEHGW?3 zpnF4aZx3}bD^D-sFKF}BT)T~*<(LWjPuE;DD7&{HEGHX!uh?K%jVNXq~G>gp> z3=R9E3}@A@!3JY3CV{&25|p(@!=4&BC(ru?`iILkM^ZvnH^cPSroktpvmz_SDFpHV>GpH{*%vvdWFB zLM^!H(vKZfUm>Iu_Vgt}Gef{C^dbYG`7GDe%UIL|rKgDNPoUz2y;I!I5!R(=<5Zz9 zTPV&Eenbm_<=p9!SBtEB1|E6Vj?lUlj-c!6z<1bx3}Swcq=&LbgWu6OeIzg9y8iSz zHbM#>Gpg2N)(gWqE{Vy8JDch|+SEQwT`Mkvpc>UvE{cdPBW>;-b+jZYxtbTut>dw# z{%T~~8zvPJ2;{-%UvdlN7WiOT;B)9hef9sg-{1QP|6Bb0I>P%lU;lRr-0 z$7%eFG`8`HM+o2B-}gQmTYkb9Q@y|aeIG;h{Wkvb9W;J3eg1u)wCbN&)^~D){y7>5 zfFKOlxzLDE3@}L*-I9x{y=JqQ7z%5ITeht4f-bc_#@kmD_6OHI$Kkoyd|bKq;Es^7>P~lI!iWT%&w*mD_3;+BA+BLkVE&WEz)} z1<8cL950yfq!k#*1uO?Wm^u|if}@(vQQS#!x~=x5@$B~};Il8EZyJXdRQ?NdRS~Qa zm#CWSve;6-5L|c=?PaS)EPe_cEXwPNF+~BDlpj>*#mke~;n6hBvL{nEK^*cw?50Z` zVwJi^pGt_2lpj=++Y!4M_YbCp2WM^z%o-fo<75{tdUDJQwLSAK(`>RR)*~*0P3>7)m|CZLD{2-PJl8n?4&;`P{q0Tt}2(1!uwcJs&jgnK!?@Ps#-Q>piKK)*c6{+Is^J`x^rPT7hrlU;Ew^BPknXlA* z$$ae=^F|Q9XXZnMSKRRGfG*4j(E~m;obhYYIX1JEVOV(5{jO&Po3q`obAcwbC`_HK zPA9S+x^?1D$@p?c|1`ao5e^s6AHDmD^T*H3Doy&kx5l7u6>70j)mmDZW?Jf$vonQf z#AYhyY04eF(}@mDIA;pwc=RZacgOh*XX_UF8oEx(o)Ae879%0M55F(}fc~U28!uS? zapwu|TYUSIG=3|+;|mG@+kE`{Xl(QKuO<9%`2wFvc;D*nzn#Y4M4xwo@c$Du{#lm) zf0*I{_Va(2#+Ea?x(O)CFHFXOY_?^iw%=@!Q2wOya z$m;M%X#z8zL_^0l(yLA|nIqUviZ3+u7=2_ivT%}?wj%Gm>I)%OLnb>25qoY!iEdqP zsM$1dHo#n;x}D(GRh7)n%|th(Bc`Fw&y`1T&<-Kn*mpQ)sh7Oaq0HMnUP=H>$}7TD zFNzOYoi<){NG+7+J~0PXR2xf=#SC!?3jSNUp^qLUfq^mlq^>;kG@>osK`?Qf8+9{j zvvIkNWuAvWPEUv_RD~QP6jGV(rb2Tz!;%XF7ctd|Pj`~L) zAFW|}0;amX(vxnK0)F8z>|>Zq654I(vE(Qr*(?_vZJZKr@q$TTEaI*Sn?c=|I4@871^f0)K^qOtA&XYuy$Q#`=(2j+zTpQQIc zkMO>Y7u=??)fYTZc;CMMZW>#>f1U8Z{ro?ov5il>mhitFKb!Er`TgZUP0mB=bu6J9TN3-_AM zRn~ATU(>s==$$?u_2I}k%+c_8h?eUqSU{Ir*sW(TwM$7jG;K~09;N8~HNES4Fq}r{ zU+kr~O4nG(^>&dkWU)~=vXb|5P4Bk$hZ8t}j!0v1vOh-v*Id4(+3_l7O13Q48C@7U z_$-5f#)YCS)n)!5WK3Kv)kdAn!a+duD-+jQE>)Uldy9Fjc;swVN>JsR-mAt0{2_Za zu#Lcn!@uu^$s8>9^Uwp48yln}($@FN*5Q z%0&oDrfESL0fs<=9OxyISa|h=+)f5nQ_vQ!!O>H{62NClWRwFrz`Ip=Rxdn0yxStivIu$xz{N>EaYB?l_4y&!`AfWn|kWU z0gPuR7WAR*vjn%~&#$K+m(?rVNQDW>N`nxv38xAQ3Ye4)#}( z7CS-vf_Dp*i%j1R5bgZtdBciMO%?S!m!*(V^Az!e*$ArjL$_wT5X07#w*LA=C~-W6 z75QTiPvz=Czk%JMC^(T0)@}V2g@Bz`eLzLSF+`>dSFc{#Jb%%N=b+By{CyYCn<^A3 z0=0dL>uNam$u_D&Pi*VMi4s-;VSxNgZh;R+3w$2^QNI3vHh*6y{Qo$;_dn3s^5bt2 z{{Ieo{m*D@^Yvdv@c@%=H~&7B@W1`MAE2>)e~IwFegALJ*y8iYC>~(&`}OiE@)V|_ zD|GKY88g+%hgMPkajs<>X(J7N9Nz)>jb4JW9kT;9+$wO+@O?KVoeSyUrY zcCYKZtb;`|NFeocBIIu=>H@O!L(&$vn$LZ`uJ3wWnT>CGdMKVILC+xs7Ve zTJ0l1x!SC>5EpprPAB5FTf}cj&FMXJ{@fMmNUW+KcC~MwHL4MvJ$HE%IS^og9 zsY6s1C`)*<_Uc}MT-i%5I!|ub{C{!_33LRfO;D=e>`{RxjY2Q+VG@_cJNqZ{q{+ zrtwqsx9qU|{~y!%33~l?DgM9t)~8Uu-_GxCG`4(&ms9@V@&|sM##SG2m+1liHyWGy z1p1oi0JWSb)`JYpksC+W$dzT`;T?o)gDthxO3**KHT8y2^bNUL*)GB;QuZ*=*JB6$ z>8(D35gcZ#`Z00=1LWca2pepvDW8EU&W=Ze!tU&_U}&DHl+vXbnpnQ%t3F&7n%O3=xV-ggkbjuYwMuv1fWoylib1O15V}Nfq(} zK|@_XVlvq1edc9It8@r4r8LG~bZYR0Dgu4kbI_ldwb(-`@$zxnOdv1Mr^g%=86f}@ z%0^SbR}jspE*(MJy{J&~FqDiYrqM-*v^!MNbt;)W)`yxLA($34)RBN-Ht}**w8>y* zRS;GrC6J(@POAk`5=nz?gV?17gfmlxkO>pf(+{^RSSTr(D$rK+~iL`lLRA?El#FHNoqpUn ziG)(IprLo$;?d#W(3AMuLJia?O0hp^J#O(U9MVY69WGB$&G!jNM6!T$C_M6s!Kh9m zu6>DTom`=;arJ*?2mNj_++i^wi0UWWPzzxlswTr#Qq5 z9FByfwh%PbY75vXIC!{+v1lUm0a$%uoz;xFMF#lpL@Cy2mGaJvd-`aRC z;eDHr|85#vye{?svwVOq;eV^w_d6^e@EV5yKZfwW#pmBe<2TZb?j!tfKi}5>+jzl) zg#WER-+!gC{rz7-_}~8ga|r)GPM`lIjV-^RO!(h?eo$9u(||aS69>ihpw|_$Vkvt_ zvj~N8L0!%IGJHPMU|kRj05(F1A<#D}1+rXmLnkgIPe1~m|p5lyFe=CA_2 z?z^Hjp>sFM##0vw2QfMTdc$vbN`^PCF>cGEop$C4O9c=?{S=PUBw=s5N`u(Ji^_v_ z3k+EGKft<>vJdKd9|>B$Sc{&RmI?#$Uf{q$l2csQ2jH+CeS-UItJw3d3!ub`TUlK` zmUzUe*qX%@!|`rB8hf9yvlKyQVWZgbcLS_c?*7GFhVo+M4dIWYI_wK60 zQPdw7!eM_^utoPvwZYua%Z?^1z9ShmxL@0MEr@V#rz4i?1Cqr!P-8FHGtfH_P<%Lu z`cC{UTvyJ+G|ow#I|!(YP&_!5|A4kcZoFU_eluaM<+HaAL{R1U!VS5J(X8MU(JV;K z9eCQQoVtrf_O?celer?jLDxX;X+mu7em{tJ+O!`8ol4dMSEqIcX&`G1=a|9Qp-_yWTF7N7qYHvS62|2AL$ zQo{RhrO*EtH2!89znt*DjSu_^jcxw@RfPB7Oz;15Hhu%)|D=9@N9}2s`zRJjH8-Jy z`I+c=#US*etFZ4*DetJg+VXsSGIx9kFp+P<-Cg9#9tnq&LdDc}&*8J7M!r%hIW_VX zE)u+8MyLIYJ9L!VQG1gR+D7pJ5`6Q*XO&R-xfna5g|O1eiUw@GjNT6SGE57X>|7;Z zsC+{m#Vn6zrY?Rp4_X^4;`xPat`w@aQck>l@1B+P$2}!DXMal*g+S)gEu9zwZSLCA5wQwoOov z^B$UOslqfW5jcZamYOTvG`}BNDXP(S#mGuTE9aY*y%9B>}YmsLIqm1p!(FT^iMn-lI}ulB6-q~6v0#HlkC=?N5wSy*Ikj zD>|$uUZR0CqX4}sB{h_-C1pZx`H(Ugd4a9R^ZrwZe5m|OZh_naxdn0ye0W=+M1S6y zjTbKe&{q)NxBT~CqOr}N+x~w~(og(3;eVS?|9ZmvRuACs5Zoq5S_F>GS@W z#`g8EBL2Uf?@NjA|0cXY4AdTzOZ{DkWe3;4iARVOm;vn>Tm~{0#^%p zI*coTg6|CCK_!C37z=|3v

>84BjNe3~#y9|<@jh0KsQk-7(jftqO<9)OYTQv0<8 zMzrV3;zuJ}Cve)rK%JWpk@xl)a!pPH>(C>olEXj^&0s*Mt3hitNN4eA1-2T_3gm2+ zMT2Bts4diY1i=P@RziR1$Y3b6vv>{}x>Vv*RmarA{&0K@g)hVPT_RU|${e5LuaFtB z$T{|A%?X0FC9s_M>(}(8Sindb+EW&aB2vr+iMVsZb_6B^gQ?uL!M9_pK zr*HA$w3bC4K;ABOd!gLMhnXwLd#RpV#;Bm-JuRN z)Hl=!k5Lq8g5d3Fl)i~+q5&HE7$4CaNDDgM?EQjj!0gHtVpO5NuLjN^G|55tD{e|X zTQ0ja!9@5u5KI4l9A5$9 zH!Od?N%-I5;oqV0H`4oe3IAKX{iigxKmX#zl|r{rm@ZczntO$PtfQ8 z3XSd0?-Blg1HJwSG&cPRDlIjWyAqG~!CrJl>~M##mttnHF~Pe&2cXi@XY^vI0DAee zsvNU%NwW8;n4oB>o4r=znVVf+p0i%34&CLL(NOp%xOJ758t>qdg8MLtP_Me22i-{P zK2(mf@ld7twbkx=C5n!AXHK4WeJsI94RY;3gW;pr^~y@_r8hlAS{%!iKmk{2!@q&L&<2Tdm6~g;AKJZI4 zew<$4C%kXt0nZ|QZ}kYig~s;ttsbC>4-`W+zrQ#dN2yNZHgXA;yie{3l3H-;QgTO^ z9hxF~^axH|F;uf;i&LX{oixgR6uAH=|D>0bW_hSZ(A5{ND28g_U7Vn~vP%^>l{`0_ zCvwS>Rl8~_wnZZ;5V$i0272_R$j@u2)Ur?B$xIn<*bjM%U3HA0c#I|$yCb;p&NFuz zBLpwPfK72xnURLN$n^+Nx7byKp5o1DGM*nh6Fg0u0Fw<(Pjr#E@UF|Qn!;a%DXbyQuJvoFe|pHWOw-Wd=LMp>iceQR(i_zvLFkEs$Fvw?J-z z+yWnb3smV>`1=1DKD+r>CA@F*`@c$Ki`Q-cKa0ozKbHUhI>P_<=Rbw;zJ34q(b)3& zi-iAeyukMV`#%@c+4x$*|4(3C>8U}B;jR0aK+QyYy|5KQEq=w4C1lmSw&j37=G(yg zlF~^%H72OU1Fu9HAght~T=|SNztT1nP=Y=Un;%?m0i9NQYBXStSm;4YaFR(16N+B9 z7}e1_6!YvoH4Lc4C%y_}b!O8*<`fo?LlKqUDHt9nV^8)~!IsR-%@kJ%li~NbI2lCIxKJJ* zuZ&B3xmc=Z&zj3g*XPs%1UFmK=&S7Ljo61dl2>pNLXBj}W!KVrE8 zbF#9d-|8S*m`33Eo#E_eW%wxVCaswfcx2O*H$B~%`Ip=Rxdn0ywl2Ow*J0Hc>gy2 z#y_O7jSqY=;s2-U^%oJ|w|xKapz-(9>o2EzfBX6Gp|Sb=az|Zfoap_b0U!6$n(_EB zo*k#P^J+$8&p4O0oo&atY_?eWEPUZCjx;5fLe8t)QDe0-yi1=Gzh>#Si*ey&`qHoE zP@QfsBVS~ic1_|#R0bY!%c^Rd7-JTmuMl-9hia%+?hj33t6&%xuCV%Y+Jw_EPVqpH z?BaE*QZ}v}stM5Lcs81PDA46eJWqd{riSH{o!x!sxDX;Ru4p)QOby!4qiNI^dP-mg zP8UTiwkw-?GdJf}m8B0sRmfTt{0ebRs!?w__Cj7|%AKof!Oqf-4%I=n^1%?;_Fy(i z>1kVz3bv9j4Cp?0HbX=yrERSauVJy71E;Vk+;8^XIFTZX#ml^LIGz{cmE};azESVP zh;9V|UxV3A1NKZd8USfd(RykU0G{sAktv-GV?PbRTsDOd5F79{Lvki9)q0gfH7lSD zP4&GPViJpI-j32d0J}D4Nl7pW7~Znq(pEETX7^r18MQzYD2M9uv~qtioci?ioBc7= zGJQ;jW|3XpE{_UQ6TaRdjEv*zRAyYxAh$t+h{gbsC!F<@9f~Cb|dTHqjQ&JH+`qY#k5BK z>3-}8*WGzu=u*rgMG*NDC#J@2?f$XpQ0ZexA7c?pdOcy6aZC{MVCi0&#NDo|OJ5fD zGyRWTX1t<#0S~$@`jh)2TWx*sIBf3YNp$vR-;HXmCs~K`8y4h{J4?0o-MZRHHzS}G zL?~x+3Gt9*--|~pc`4ey+ck&mWZEmHwlDUx0EFB6UR_v@2VQ(O9E_lSK1`+jX@boL z!)Mqq4(c^3_ui)*oMOXFJl0#Er_Z$i5ZDqT8|^@Uy@2#^kRpT;2w$6il`Xr$u`HAj zw69&(Dq*yT$76S9NiEwn)un`7abP?6q9`oUzNQWWwigP3%L{{^uS(jH-zIX4nf5hxXstaQk5k1UG{3+|Dy^

uHqDNEVK$>2q`fxThwFpF|4!*O}vA3m` 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≠Svg(A4`6EVd0lZw(|hSg#YiO*H19K|5B1I9)AYmeXHNwNVfF>cN5;X`hA3C z`}z*y{|D&zeLCU&7m@q|l5ITUsf72fem_OBjYrf8{~P=CyXtIRisJjod|~L6oA`_l zvNs5wX`Q|k-Op!q#NJf>u2W3=aJN`L9w9XcEqtTF{V$T5{WeS8!RKde<&-_(JJR}H zHCF(<1;e2BY{~Au=Kk>Bx!r55ODa@icP_#t!u` znRgC=L76q>$G)Nt=k&KwN3)AU?>%QxDk2bhuN8-{fbjY&YVT?`KB=^VLJ5A4C72pk zzFk|g7Ozi$-^%VZM4p5@t-qptTKo z0I4unJ55D;x72ggiN`*Ao%*+ws+h*4zq9TkmagE*^q-?&2%g8U_q7~OffRD=KSzDW z_tO}zXVW*)AV55tnsxVRa@6F#3T(iv-%}%goS(kY07-3JfKXp_FJF%Rz-b@LLwbms z_!&CQixx1#}w|s)G^cjvO5wD^|I9ean#99Nnty&VfUn*Uiuf zq!Y5IreyR7mAA+lDiq>N{oZr5#2}c>@h8+5%KXC` z`}(0_{ox)Fg8YY#^2lbVB1#DTM>Zj(;?v(23w((F5MTYj#lK60|1IABAjvi#en9a6 z`}$`R{ZO0vzbe=EfUO#Oc&P{-%WqYaeJ zZ{nhvU3PSU>!aM942@exxCj1~gJa^l-c$kH&sDTW9l--03OeIn)T%t|NT1f#KDe84diw&o`MGR}4ER-F|%5 z`EKaPW;bwyug5OfPR)6nZUCJ&<9VdHp)A}&T3yI$G(t7MH??Fkbp|mNZp-B6(G(Q$ z-V`!?ZG?J%(gZPX45N{wCt8Fbtz7amDty=?mSjGz25(m?z-fePa9vIaGagq+MVG;z zX6PDWAZeF}YR}Sunf+V{oA!BiU`|pWYN+zT9Z0aStpmon01F%Xsd3mkzJOX=b5Qd5 zglPlei=j016XVhi6Jm&}Kaw)rLSE1cRs=&_*v&!|jc&~1Q(=L^0)+(%3ltV8EKpcL zw!nw!C13x4i|3z1c;Du`KTh&3`q`U=|6fk>rxD(_ufLRJ`+iR+{BPq2KS#3V^Y;kv z+xPnr$#(w0knsOQ_V-c#-~4>9ug-I#Y;w34CDhiLBSs$X{7s}-MJjlhLTInoJZLqe>3lwTudj~!^acmu5;>XddD{pWR(eJ^1SSM{(Ce$?JbmaD8EAlB zj!r^Lu>|v6fZHuWHP5L!860>DP&BLxq-0oT0ckGb@m^CS>0W#<`1702^F8)ZL`DMu z^G<+Vy=(gIGQ8J=`H^(s`0zIA4_80wz`1@!oBrq_xo{L4(VvC+Xax3(w2iN;Gt|AU z!QlW=huLvL+O5O~nK9jDx0Nny?ug(G<4PdFBdo#e`ZYM%0R7aTkEw2@gJDZ1EIL!3 z^sF}P`Lhs*bAB@$=BK2m`oilSZkd*WcKXQd`Ho@NT%5-q)tuc8%85g&lqSy69bJ4X zEKpdWus~sf!UBZ_9z7QL2&r;n;qzunl?dM(KD+sN3&}QL-z2<$D|vNc;kQXP`FQiO zMR?!Je@3#6AACFEef#^~di~D{|35(T_YnTK{R5s!e1H4? zZzkEkf1CLK_Vo{td>_5v4)Omj-{3DvHvJCUD{ACf8H_N;Ytt>0KGtOUyl;)lB|g&2 zW}w?E>XMswT3`2U&UF~(*DWr18T+WtWPmM|1VBC3& zwH2iXNku+;wgPBx>p7p$Fc-%n1A?95>oebR`^+;cj@&b<-BUB*jrqJRhovz}ch*OT znIRLj_Li=)0yMBj*x}+1F+6(0>L{jBaSJ7y4(^Pn=qYd;dQ0HaTh6oS2g=HY5JS7C z?oZeT28PYH4tJsrhc&XahvEzjXegV8EPK&m>7HOXDP12Q?v<9m7JUV7Y>Z2d%E{}U z<*%Flp=9tfuS3PzoeL_ONfY9BR|lEQpMj`srh>$7c~!*$cp8j-fEga5mg>u~J>0{T zlgV)1;oE-g{$e!Q!3>nmt)!B&yMupmn=USQ@uf@@IUUxKJp?YvcTi6qs!favuE|Uf zvMGYp2S*Vzdf?Um^}KQj>p0;jY2r=0r@y{q3=cu0*TH`Fs?ncQc^y&vCWN}%J^dYy zML9Y6q}VS|#}?aDPy;7>zC%iN3$f5$TFv20W3&S`_YR8edAcDhd^A3QM|9!-@b0=|5-f$43_VIE6J80&}R7mcUgSkUc&!xA>E%&`2WR_YoXc&sl{;i zlD<{W$)zY7Pb-_Vjt4GIf6At|dO@3!t4+t-=!d}-MBknxSA@KdR-LtwNsHGrn#pap zYO88mJv3W04l`Fxk@q)^)H3QJreR!8--TIQRd+3ee(PIPJYlZjorVphjsUe)^`#CS z(RvzeYOZ4?8r|^Z3oDBOzBA|bn*KFe8=@hPfQV|VYOfdiIk)<86YJ+0#za6y+9p@k zme@Pv2?+?dlE9gWHbYx@Z)!nAo%CTB#VkA0JX*1uFAjhn|n-_5OyG}cP z#?eP=UqEjCC4JMrzn(^){kzqf^vWnY@U@cHarJrGyPO5;->q*bIT&qD0O0r&PdXjw z8X&R^Dhl5P0M~D+Lt9BF1F1uD+LfVvhshgvuJI`8^v4SR9pbO}W1IZWh=(qF@B8Fo> za{>ykqmT1wR9cKD2oKK|D;crUWBdsp`jzNU{g!%P_i>6NkCuC$bW-YiqorxJyg{XA z2mO|s=Yb1n+dF)c8xV3Pgo&UuTY_>JxZhF-wrDS-#%d!za9Z=t8As0_Hn-^v+ET}} z%m(&1he-P9^oFLdts$O>(|+oF2qofe`Aj}~;0eTye*3I8BawJL`9V20R5;j4`y6^t z#%h^$E_P~ilr8PLW`MARhq$i-z>-rJemC50FKXNJ{9$7{=uP;9@jt{u5A6<>f zLT+6?UzK@S1<#cQ??hVC^_tqfZXa$K_d1!S=@4v!tx4>ks2wz&*d1>IiJpeS%Di4v z#~*@h`2(%V#wecNW?EsR%_uflifnHKM+i*K|o^w8eQW>1=Z9Vqo8~CfbW|*ElIU@joA*TbRIgJsw@BXa=oq&I5Y>tPe5xD zsolr*x|;QKJ&JD*J#{ZTChYCRl{~}TPoKVW?#h+(XU?C#$Z_b|Qy0%&zI^7&m2+pW zoV#>UVt|n6RD3EdP*|X_Kw*Kx0;vT)PKNOD|82c~kMRF3`rh9q`F@h0Px#-~(?5pr zzKs{Wh~fVd;eDIWe>2JU{W^sIEq?z9$(A3mL-^n7_g5sF-`@z;_`VU3Huf@}sHPd1 zbke>jv!V@287B|wmYWk}`J zSz}dQAJf3B_t<5S=qk%u;0wubzyIIRS0@<5MSD)nCe88Ou91F+cgaK=oTYgXpc8;f zKB%mV+3^!c=fo#bEdBP{)^^!1-7`F$k6k>oES`PC$!B>9I)eh$gs zOY+-DwzKPx4KY?hWKcGek6$GDD@nG!Ar?t~J-z-UlJ6t= zb4h+F$_63RFXeR z^5>CUC;9J^{6Uic2gS;kN&Y>O-$e3g4GWr1V0s3%4!3hThe4>Kl`2OPfl>c`nzqOmahMm274o`-a z&pkK&b!YhXyN12Kzwz5h{yw_SV|PwT=G8(wBvy|va{n92e@F7uN#?y?zLVtl(e>XT`BzBhxmQ0&@~_kN z*N}WW$uB1P{UpDD%R-uq;6>_;kzExPu70TH{6)!9nnw3JU zQP_^J6xLQs<&{cfrB+yJG*<9c+1hHpwYui4RvN3dwbe!jZE#`vUfrq|oqRD@Di-p^ z)qJs7E|%)W@>a20EY>%RjZ(2$Ew;9cTgBpbwzz|L7T2o9wZ`gNtGHflm6n^Oe4(^j zD3#Ksa;;RYl$w>&mDO^#L}=P4i-1MIB481)2v`I@6A<__`Xg>x;EZ@-;X!n!x{I#8 zl;l^Dyh3Nlmy-M;lDWVBgwE(cPS-y{GUpIKK%9s9>)GQgi9`PMR9tuq$^7$5pEu1% zxRb7bh-Ci$F2(!v>kAa`|5Nn(|4uT0{Uh!@{k)ga^VHA`v>P@#Almjs24> zF|yrL77=#4LxqbH-{E(lPRlFIjyyt*H6GrrvT=R$t$rWH-1^76QciZ*a09VmBmBEs z{EVYzr^`q5oaWmIeOEfj^I0L)J~7c|7CtN`O)$<@**IK?!FSR*58EZzu0fwh|FT9H zjwZxlt9;owE4R(|9ud47Ng);@OZ1H|x5~zmB@9Z%nnqQ>!!f3(vKbvHxqr35eJ=!; zYnRH#1>oF8^os;&P*h2IO^7%^)pr?0?Rqheyka1t!i$uCk!{~T8*4(lVYYC^58rfc z%&ZoDG|5)QI6-8qeS9_?MzZdC3>~c(v+yDRl0l;c?V72W*Umt3he*Zk^ialDs=(Sj zY>(LQBS;hSWrh)+JHp*14fq6Qr#Es{e92bD{BY499M2A`xBG-VQ;5MYSkIc!oUMv^ zi3%u(2u0PsFFW32^$l)j&Pf`OxUYvSTfr(7&mf6oq~?Z0=VAL~5wHk+b|CQQ^k?3(aDVR) zX1;#rKjHkF`&c-i=RP7Xa~~Jy?++oq&*Sr7L-H%=8%o6gUrh2Jll&r*d&K|mCi!!T z@83o8i%8}^r>`OY&p+=?Br|)%*47o{Lm%!9Pw4lhqW}x)^cMl3GXSbi`Oj3Syc7Nm zuw~qg9fzvjNhdt%P!*2ADN8Ns4y0F%BZ#*K?(MTQmmg93;qx8+H!L*2PH65}TUU&a zd&T|}6qV9$Dn(+67RuZI74!0B?uaD-D@dJTJwGAnSrhTRb;bP9H)!8JTO5Igdu#gZ z$Yb!s-q1Z}h0V7bIjOMuRzn~ppi9Ey(N0a{3JMdWSEaM>KgyHF*$$mvr9uzcH7Q?R zP*GoM@`^d3!-?;}9m&?2utg}u?s%{s>C7Kjj5nValC9BCW2PP+A8>Y1&9(Nzn}d7T>et>_jCXG>qx$XKC3`{pTGVO zNPaF|e=PBRZa?@K$(+ygnD*Dv>%W-zKDQ6tP4Y|V`lE>N^Y42v$=v?1Oa6bZ@Bby4 z**CUZ#>b;<7w04KTv_dpMgjKiYD;iJPn$K(SY-q3+uJSUWb$oY4`8&~*7X{zHYFRp z7=eJ+&l+#Rws{M$?e?@8+EvMyI!WC&tOG9*vMA_Q5+8%8?jmb6$22JJC^6m|8IUm1|;NO2C$()bJ$=}cU{I8PCbDnvP0RH(8Ab!ttKwm>Lw-0AxxkA|m4tB!935se+Tz%V^`PR?c5wMQ^1Id486lyPqHp8u} zIepg6ow)UO@6y?&Jy%i@9VO1r3;vPepkCYZvkbXpI|6ew+Fds9CvbV(?sazigFeg} z;@U2^I|0Sz%LQS%z&IpuU%fN@a^Cn94^1)73OmP~WvwcLFQm@E+@WE?msgDQ0iY-R z&R5%mffU)af+(2LjAh|0vT~LEirE%cR?3oXVMVU($ciM+a!&9N4KcpFYMiw)nGDJ} zoeN+r7~%AW!pp11TPM2Q00!F`NZezD@3sj9`;^BbGhDelr_u zPFq&4C~R4<-1%=#h&R!h+%KEE1ul<~=Aa<+=F#~=En&14OzDPv!#Kuh>rA0z&a|zd zu-su6(d|@Q#yeHEGdx6dlSpood?@bzMx9TD#ST$*NV;r(qT4##?GF_|X50I|CZaSK zvw0zk6l>|O)ELt7-#%FcECPhUU(mCv z|KGFe+IJBD=QZ9wL^8krIO6}jhSgsR_JI-k|DR8v_irTg8h^Y-8|Uv|MEsw}1H6c2 z&et!I|NjT+^Il8x3rNn8J>YpH|2)Z0g`BEMt>0JM{lP(pHO?#d;n(W)dvwOAT^|n) z+M|xRy|0c3lb1KgyZO#3ZJ(;v%j(Rjc8&_^Z_5$wN{vlIU8&h8BHAy0I&lJ`KX zPjh^PyjV#cXBT~;uge-aS-(d98;wYWNS&tSSktQG;A^|1;ccCxLy4eykP$k5O>jQ+ zhodL4XA2yBs!z5mHA~RylkInVouLFz>9*7MaX(VJ%^i$x>z-dG%}V~bWQ-f@p)_+p zNx}`O8o8`osa~&|J5mhXJdo0{XgsqVOQmtsomB`^E0bA5Q>gfoa66uYmMcofSgmGg zZt0G08xN$uk!#4-Xpe4_@LKcxY%y{|gme;TSfyI|g5+t|s+Gsd;H29bj)q6>pzi@i z3$x^6$|-a!IpRDM+R7!3@hO1>f(}aOdNzoRho!oOw zt6lD}k99e6u}6uph1$0e@!>!9u@M#yRHW5L`0-pF@2fPbVEdR1rF*G@@pOBtQLRWb zP8?MPi70oEwLnB481)2v`I@BM|sY`YUc(;1$*3<0gLp19a`T zNM`(*J<7!I@0^MYe@yaINZuxX|8$anm*gjryiWfACzJe6l6gEqnfN}pFYucBoX=kt z`2HV|%=LW?@%na{QC|m9)Rof0h0OqA4l;4chUPlPVyZjKaJu8`0MXO@d3}F z>(3;a*)LSby+gOBur`#&$L`EIlg=*=oFBaz69gS&oTBfTm!9}FXE-9V3B=f0=jx!d z2a7{Vc5ba|H0t-z)lXtyfk&$JmUs#geIXG@6JlXQIn# z!Eebpbd>c?P9>L@;<1ES!0uc}sc4uEE$H}!v8Pj*^JjW;*c8ALT>PFQH7TfAr$`^> z{m%YaqV%3_sYWbf(2nZloHBT#oc9J5ntKjXq`f2{S;@ zQrb8<0Y=QFDo*4LzZW$&EowH45$ubi`IVHaI-6pExkjm~dpc06T9RG`A5_qb zbzGg*OTWgd^{^XHcHEI$*G{}>iqWh3M{jwOgEXrVZX7zKwq?tOdcifvy)%Vl1Zy5Ba8 z+pK6UplMahhutD;`(_(8+G`3Mb!t&aP2l&8W-aX21b3^8G4uXJQv~X;<=8RNcgqi_4jG6tiSGlZj_=clWCmTU=U7F5yfNU0O~p z$CuKY!E03{Z?n!NezW|b=MVdAS;t2N1BJinzz{g05TNdu;sq=RH1j@d^{qHNp|DQpx_yv-= zKYyM0Kj-`JBAM3@+#>$Z`THM{{51N!E#m*&pZ|W6xj%o8>;e4sA0+vi^!~>Z|7Yycs~a770fJqxQdw(xqkUn+VP9x%&vcm&v-pG2PD|a7q^q ztdmpvrV~DKVUwi;$T}G?KEF8=)PdDxmpQwl2%Huz#QL&OU&G@uD4!o6kWVFLR}_EK zs!}?=K&&V>&y2=Q*EXlN)*Vn!dveR;NAmZRoF@7ENPalUZz1_BNq#EH z4Yy_{wT=^p`Se7Px6rD-yj*3ee!q*$yZ2z1Iavh;AJH9*!&+O zxl6BqHp$;Z^7oR=WBZ3B!^AOpTqQY5@;1p|OmdmzHp$;gGLLPDle|sWzn)~C`|zbC ze<@wRFUdbk@_&%+u;m$ycfgIko-$@{VtNv zNd94x-$?S)NiLH7T_hip+$Z_xN!}&-uvo#fY%d_?jGN&a?{Yb0ML`KL+FlYAG+OC z&mlQO@_!@wzmm*rjXaIy1G?TId57fJl3XGAH%Wdp$-hN%g5(6r|Apjtk^E&Ozmnwp zk^H|%{=_X)+u|>h{C`OPZIb_t1lK+V0HIkP}eiX@ZlE0DUA0zppB>y?dUqte+ zl6))4-$L@gk?nbjLNhJSol3zgb?~wc_B>xi0eUjfo@<&L170DYU-$C-2*ac*+*~QQs^!gA`O0c}yH#=4 zD)~aC(5Mt^l~S`(ZdBN7Yn5ic(!5gH+^TG^R&yxzzg=BfsTK>>ic_t{tBq2%wO!pR z*7DUFlDev`TBBNPt=6_$b*EV`6zYZTdZ}EmI(7D)oAs81;Zi(Xf&NhtJv5oHn!KA&U!Pu)huM2D+!c!Z59j7QlVMSHY-lEy56jno0oT*%|f$P zY;F{qo2}+{w&ggj9Dd=nN}H`py#-YotF5NfYSmg>&~a;{(%7gsHnxhJt@SOZx|Lho zD%7@Cx3<<=Tjj!5rM6Xr9<8lberqd(j=fvkwJW*Wm6hU^V*W~b`%1mOU1*_G&yG{s zakh7|<(=&IPOi3-zf36GCyRhZz#?D~un1TLOc3}RdhtCLaPYz-f`2%|F8nF}vB!h) zkICFl5O=aT(y%M`VG*zhSOhEr76FTZMZh9p5wHkY1S|p;0gJ$=3j%*jir!-Zjy^md zjem^q{{{ZB2lIO|`S+QC$A7^;CVz|xczhZDG5N2UfCuX9mz*7B;UkcK`WyRyi-1MI zB481)2v`Ix0u}*_fJML}U=gqgSOosF5%@b&K=l9rANoD_|NkY)PA-R%_W#*h+wZps zSOhEr76FTZMZh9p5wHkY1S|p;0gHe|zyyK6rx)L{a3Ak&ci<=H)93a79!@!pchW1~ zMl#Ro4`ZMAR=WN`$|>g8Uns~tr<><^zvXkM?`JveIcHn!GO{vg z_x27Wt7Fu>W7Xx#{XKWo>G!B?Sk66b_j+bMT9S(?e+8mTDXCI?vp*gkMjW(BpS0D> z=W~XN(2fWp>yN??7 zW4XbUr>wG?l+>gwm5_?Y3(8gMrXyQH1MCxb*dNQq+XJ;ri1o-XrIL$Lp)Q)JUCUg% zQGYx*^EA2epav^e+m?z>%^B0Ci^A!VN%b&Hz5RBidt2?yJ?ZZq8R?opuO-%yE0ahG zmF6#{VvEbsWDI?l66xR>*(gZG#O7$=FDAp{SDmEGKOJ($sZ}&!*_Q#j7ZcMA7p(?4ba$krQbH$N5vCToS z>5jWb1B-?1FUffc+l<)BQ^1ezLH5ZaU=gqgSOhEr76FUEXDb5S&#&tL$N7GX`2G(N zNbe(=*VAvHbO7V`{QB>Z{7ia%gZTebNq#rU{Pk7h|GWm?@00vwdVQVvKd-6u+a&WE zU)9e$|9-?Lh%{W&y4BxoI}AHZEuyz9I=3!Iqw#b+De`YLy-lZ=mRWn*SR#(r^GjmQ zd};yeRI6ciME&HU+Y=AP;hMLmS#P_UYTIa5oDd7MbBz=&z|?Jdogr&se$*bCF&#Ah z6O=(ib-%5GceZt!*|6vw^@siAU8#0{*sjGwZ(DQ?S8J3lgdMMJyVsFMD+k&&aL<_y z8BB8iPTXKvg2_oUR@st705vl_+a9!!#>e99@nn_dW@#}lP%3n9(~MMBQGHuIYqI?V z43+oAwAffHcSVcxEeRNZ)p+y*mzpBdJkGY{df+;Zx(Dva?Hx#_1e12|tPkSs3PXc; z&8QXDB{r-XwZb(tB^9CaWX+ffiz~Jm7pz8nb**lMojt2#)(*n^Vj8oMEs-pmQRr z6L#kj+K^tttwW;`-2&~CMZh9p5wHkY1S|p;ft!ZF|3{y6%cRoZREQG4=QXY0Lo%-s z|Lw%@c};mnWHJMj$onF72u78kZUSs^b?>)W#4!Ryk=mWD~@Xvc2$uFVn8~2@Fe;LVt zOEQa3$W*}E0?sd_C+-+DB)6wNFrmY2akXQMqtt#c-0ec2s$4iG`p zI~ZenJ`8;cJHruVXm339%ZtnL_;M_j68SNMdMS}iE+v+tLQ6bR`PG_43iXg*Za=;~ z7`cPt*nRwD!d?vWR4ld}!z%KxF8GvFvE=enI+11_AcGJuHVu?+qSxYaXAH25{Vpsa zF!k;B2M2~TCB2wQ#S+n2YDoe+vA7h^;8HRb7pS)g_GQOF@5?R&+IaIy3RWD1I?UOu zN{(!I)6antj5*j{$HU1aC}Pc-?N{kZ2Tk9`0CP?-aOJXW)zNF{bh}tv!|_R^?wVP6 z(lA*FrY7`cWj#OxW@DvNHW<|kM)kNq=yp1W`ziJ#*e-myu~i80c}zApf~s&m-@JFE!Y&L3|y-H@c8~<)b9_b8)b8^KWGnk&xYgPzS%yB+dkmNU1>QkZbb3e zVrD6pUdm+RsSNuY1k_&1#>cRkW2-V!6jKvtBAh!?Snz&GagR)A(ttDpcVpm=O4P(Y zSpCREejyU^k9B=#)n@_^4Amp{~?lpnq=NXt48*KXVCR`lg#4-iewM?L4IA3 z>tqjj9$o)kl39E}c3nOxxW~I4c777bb=K`&8=t#b!;sV%B1jW(=SSlRWlpAXlk=~? zSQ^9{BrKZFEH9_xDdFzM-9{@Vd6&>Ax#C{yL`t}QNe4hdeKG-L+2858vY;<(B|f|B zLPd>M>n+)luFj6jQWwCI@cGX-NC6M(2_{z^SX_eS669X5qmCe#{#;dluxwT9PA}SGCHFFOAQU z2&s#B2aTaUyH1xC`J|`SrPsOI=^cp3gq>i*X;eSKnj7+MT%%KSd^DbM)Dk|r0040U z32oyqF_nZv8XvRfc4(ZMZtn~;T!bmCQY_a-m`LJ1nk%)Pm!0k!pti9!$RQhHbrMcw z`k|wp);?JTECLn*i-1MIB481)2z<67@NxQsZ&|p%_ou%XKQaE#vA|e?)wr*9Z6)lDWVB8N~Pb=Y2lK13ZU5?|CG1d&F%N55Pa~jU?Ye zuP;(O0IM&MEv-w0ats%O%6`y4G7D;tP5nbY5&*BaV58+EAlr~51vHw}Ve@8**;$1~ z_}yb+w!O-t3!3BIeCL!~3QB(31V6Xne`mZ~a2avsP}DIjOkm3H(cmmn*ptFvOP${S z#4_Vktd#dD2Iq!AoKPA-!{%}&*cC3J&sg zh8eJ7s@5gFtgcC!{;1fYT!_sMVh{#~mL0^FB;u$>kd8$&EInX$Rc2Ub4z4Z3*_P3f z^wOH_ZPqA=dERLcl{GjaqEmxKwhF z;Vm(pcB10}TLnw4S6aoIp$D>rFqqDMe|*p%8!5!bE1F8d$&`#IQi977=*8f}V@X!9 z$qHT(j#{}Oo2E3VmEB##Z6A45SOh3;k%SLSv;v_{4BSe%xQwt1O)^MzM-Fq+Xji?? zl6c_tGy-r5^*7*JM({^Ewj38WIOe8{EoGLH%c(?4tQf-qtXEoLZwUFx0LwL44DM8H zP0lV@HvKerD!RwpCyRhZz#?D~un1TLE{?!I(py#e|36CC%Eb3MzkfH$-%r} z@>@yf@c_%j_jx?P8%XBYW5oZt{A!Z#pwDxN|MTlVPcpAB@F?Q{Ouy2ae6&JD+#WkW z3Go7jZs$lM8Ff^yAkQJ6K$w=F&LS2+Dx91Ppam$P_r%hg z>;}~6RysTGL>^W`e6Zwu_YQ)jkf=|>e_oEGv>nczhIhy#6 zbbv)9UY;7I9qFj4gQe3w>YNWr80MPvb3y3ADiJ8*kSnXP;6x=HZWm<`LWZctXl#_du!1mIj?NDCRbrA)TR6VU`BJE^>nQxh`@Hj#ig${|My;4-FZgIB8{* z(77_<7g7JXKLS?-}zsTL;sBdZ+N=kM{#M6qb(i^;{GC@MU#0Dp*rZF@dJ?zKg z8iQd-w;#8{YlBQ91Wxx*R@P`XC9vj&{TLx+sxO+&d&nhkZV};^YdywG%KvTC^~0Gm66lTHBsEKJ)O*vLbp5pX(sQ7 zsD05-?Ex5=yx&NqTZ3yYWrYXT=Cp?L3C`*SW0ByW^?+-Iw$H2$ zM~BCTfhden3u{fI$a?ikShHf)y?w^e8^%fmHJDX(77|#Abec3n4^y*)IuK^-J%OYl zVRX`Z6STS}h-$`^V6ZwxgOE+P3+p1v0+=s-Ar6PxfHe@6@}c*kQooBZvw`7&VOJF5 zAlUsvNVej0xFmNa(OZJC%8hM|tW>an_MjMs#wxuM`hHPD+82`hjqVoMpjpoT>_mp` zRfo%3==-R1wX=U{nx4lFAb`QI3|70!^h#$t`(zQY2v`Ix0vAKzpXqI?`2U}xYsZ5B z|F22r{JBH?pT`IM1<9O`?-T#$_5J^bWX{h|$sWM#@7;s=K9B!@63N{E{|S<^{Tq3IoZ&sAm?}&kqSqh zlfIdQjGco7hZNj(_>EGZTxj>Evv=5a_sw*{?Ox~{$4-cvvxiey345G(P{%G(xQgHj z7dg;a*t1-RT*m##v+MO2df2gFNb>Q7TRiPk~*18 ztkY!AjjW6gJBTQ_0Aj3i$n3nrabG)_a+**8WJA=FJMEg2Au-?rVKKT*U{zTPO+^`< z14f19?K61bVDS)E9js?sbmXw~0CXa)!*+kaKQP=RRYnFarFPUsAC>s@jt)ES1x8D} zgMpaSisMk6QHJoE)H`l zJ<+L!wxoeGb1q*Sv}HbcQO~#-@qv}68^n5e%hfR)o#^F;o(*Pm9a-uksb}Ua<(#UA zC-uVHp-{RphZ8KJua5zIp^JlJTS#no1znfcesu$|%bCX{dQ-5;CtNR{DHm%d!tG*IUhUiAK0Hq_jh#ZR!}=rcsBiiV$>O|sf{BhFx? zsG&G-jte0!FmJJ4TxH&>I-&Q;sypfRfcy*7k}s@yfDp8W9DdE*qI;fwvItlNECLn* zi-1MIB5<=1_`mc)D*pczx|Sin&-wZrg?NA{@%`t~>)%K+&j|Lw6gmjr&!AdPjmKux|)Ks1N>uaGy+v_Oe-X2T3gb&R|{W5_ZVcaxUoBCR4Ho}U~xou># zM5dMABn^YnT9(|~h)~dk0MyH&O>A}8N8HH6>St^uAMU9Ta)Ptc3xelVH-P2Pe%yM$ zd$!+ZnKq(2;m2@VZGToZbU@T(BGkhtBmpK#DNjk&%41<90!A=(X%z`SncAp3iJTkn z%W1$aoVOwDns9+@7Gfpz?p=40og^yg$ttv1R=;4pMNJLeB(H{_kaf7p@ck=b!(H8GC@!kh^+o z{7cRN^=i#eaej^hGKUkniex&9zS%lWj+svhPD?XCH@vxGQ#W{XHQdr^h334@8EAM5 z4qanXnG);*$WYKY-kk8gxE$1@Haz*mz2+aLl-B?6?1Y~%y?$h;Jvc?31hh?)L%46q zg(`Gphc8^$;VoAT?e0ZK0T@#Too|RZqr-O3cs#{|-k9wgMxHB%t{MlWdWP!`;rOCY z7i}&zR4yMLpZp=JR(Dv}Km_F*hUBAYoiND|*P-4D@@t{PI`SR&sDE|TiImPze9$yc zAc1BJf`LG9vCNl3&!hZddw7HKa*&w6LL7{enJNj02UELuPq!<2R#&DTO#oXH>dZwGS5vs_dr zX+sz29Acj=0u}*_fJML}@aclUe~_Xo|39z4?-1Yr@ATT=B$;1t2>$=yBbmnwGzEYE z`$*<|zA5l_vik9F8?y||2LC9BjWokAEBBH?dqVDNq;HGoMo(5bl9<~~ zh$n|fOLNw*7EBakOcLS2l0K}EH5|OuMC|-BsaJr$=jFfD`e}Si)k0`H01Ln^48TJM z?Q;#nIJ=l(LO8<0Fri_N)k5gBiOI>o+D34|QU63iz=KCoCTw~yZgn-ZJFwb86?F5e zWKvf%ZFj0_DKvXzBUVBeK~(uS<+E(eFlA<`5XMZyg{q~{zU7HZC_L_sO{fWkXb!H9oL@bZ=@jlbQ-xKAX1XidCyRhZz#?D~ zun1TLECOl-K0&{}W#NI|3;qs2fub+mO}}|6@qNzcKZp1|kJo<=$(+yMm-s!m4?K(H zAEeKF5b^u(=buk9k2m1`|M=&9x8VQ(HvP{S0E%%a#c1XEZOm$MnZ=KLm#<6)G{ zSUP5~NG0_#OPk@Nr#AaYr|OwbU!*HY`;M*-=H^B!YzNTE;)Wd+?HVQjw$bjx)|Zqs z5YudoSHhPKy#nisVfq5AVj`%buVQj#JM>b&a)v&#?r>xrTLJ^2yv#M>T|42srS7y( z53tflZ8`eQJeorcIMG)W*$HoU<{By{m$yBs{01xmMYwtB^`WzkeXB77`S3ov{J=eFkFNLSDAT!jeIfrEbfu>X`Ow+8g?$#D;NcL)r^}p|!g*HT{i=`;9h+R(@0<)x z8JgU;5OLBP8eLcouM2t=nw}DY3oGpAr}Vn!ZH0PxT|W7B6bhT6YhDyi`@>_IoOv@y zb$(_uMg&IZUoLF!ge8lGQ>&7Uwk5NqlntTbeiXc+8j z_(Fx1{&4RQp$XsUfa4>l%uFeeL}4_w7RJ?V=nWdB8+zz>b7;6RVs6P*I9TyQRp7yD z_(mnG?W<=4^ZSLg{8{4(r7CNokzs99jq~i}N~O9wKy+rYPZj}-fJML}U=jFKLf{@A z|G%H7*4yzDDEb2DF<$_&%#2P!C@iybkBtq2XDZdCvs?3^K1dGS*w653qGqBtvWMtLDcu zIiP?A;i}F=^;YP(aTH1GAU@UXfTqSqlNM2Lg^ot9!x@AUTV@gC?BFUn#&ra(z8yLT zqOR=B?w#;ev=wfjOk6DZ4ThG9BP>KcRF_Mk`!!Bkni)7Oib3KSIvUm}gl>q?Xpauj z$3kX|!T5lN;TS(_@JKGkHEXI-2;D!f(LU{r4ktz0z3&f23snqE7nsv1hK@LC9QI)) zGgBqKn2e?pnM@)cPen6JX~E_I7wmF69*r)=lCfAUp#?2`ag9c2G&HtwVmis2qIzaG zc0!wo8lCHXxvHL#`yRnVVjT^X9MG6Xnoj76zB1?>wJ%<3Q!sl@%v!1)o9=)1$s%A8 zun1TLECLn*i@?o9;FbXX&;9-1OnjgD%h`kX|Krz_#Q!Od{GWYZb0svdgwyCM8i7jzqTUHzMdnyYu|QT( zV+&p+)%mR%zJ7bN(=&~;R=GoU<@K7S&@Ra4k;|%CqpiImR}oINu#0FMd(H6dmdYNW z_4Z5#Zx|BC_`jf#KIXa^zReyYi>G-55ps_j+ekv^4>T*Gefv%K*w8)#qePmuYXp5v zFGZI#%YthyjgF47bS4weq@u}0CaD|BN@&j1M7{Q7SaMXA5(AeUvsU=c1NwmVW-UBs zsI(!sy{k_1#Ydff#OWNkQ|a72NLxY~3ZK{8K$ShwfT6KoG;14SqY|(?A)>}`*0Ts> ziHWnCpvv7TeCSj2#2uJc`$O3}K^4>{fc-+L%4Ya!)ILS9y5v*8p_l}*a3f+8G=Ak) z_#T+80gRTXZr8ZPUR0{$8q;={pgW*_vItlNECLn*i-1MIA`l*d&msPQkA?eB-t=Dl zAM||TpXnohf#iQ7`AsDAz5%Zwd4WEMad`Irf5JcZU_N;!|05IdcoP0G`CplU#~A;Z z{BKOa;}HLt%I9-yAfg3eFhC6eyvsf;0u}*_fJML}U=gqgSOhEr76FTZMZhBPnTx=2_WL|IYcS+{?_$TE5=hyFn7qi#Dgx>$7B=hT!Apic|bp0J9^Xm=r z@AG~Ge?sz)(d)Ut|BaB#io)z;6c0K^^LXZ@>+hjWRli3r?+8#6sx_7 zIOgQskpMN@UDo0wvfqwW+Pyu)pp6)O>i#&5OUs$Xs1SW5D!3-MgbPrxbNk-;!X@-p zXI|eN@8&zF1mLPL5dok-=!O9(HbfQmTQ{1B{oXY>Fe&u#3Oge@5( zaC`AqbEMMgp18vZT9wMmHeKA4+9%V{63p4_-r6TroAR_2m$#HMAm~kZO8aCHun1TL zECLn*i-1KyM&NS;_&?9D|0d%5chTE<|Gzs(-Y5Rg<$ofX^ZVxz|L5=jI^z4h9{-z2 z=GV)__jx|R`$^{U{=DDcEAjn>^_&z@t3RL>x{>w%9@=|%yV4<7JcWtWKnU@joNNOL zOkrJ44GvZf)`Eeg7j&)<`Uivd@ca@T6zdI9$)rC)m?=gl=x^P*piWjKnW!NCD&)A&K#~ZE72DAK?kGE{&5vL?Fu!9+E zK~VxfK+E1}(2g_|Ed|5c%S0SuFcagy#YNM+Y_jVNA3yG#jJq-w#DL?{F)n#ifpE-S z#&6D33}AN@s`fMH&*IjDM!RV=DTk=CaedsL(S=5P2ZU8Np6m!LRkS)H^UQ-R`No-HJpMn8|7Wk_IRM=M z{vE{sIsg6_lJB68d=~M2&gZ|1`2O?g`duX7N%9i${g;sZ9+H2W>W;>O5P%xpZ3vTyeG3W5k~)+J-NvGCWsmaAI?e8#o2pdhNA=syx!H^b1e6gv<4rkI_xu&!6>eye3~Q`Jp)eg|!RDZP%fuX1cSqMd ziZyL&wUR?>#3l~n*0W(ULF?nexO*renRTzZ5wzIE{w_J(vzz{)PyxziTbfHklNh2oklhAN#| zN<!Ka)8Qo_OMSD0gHe|z#?D~_;f(vUIF}{$M+u*-{<`O6C}Tu{=mD4|MTlh z#P_*B|JO;rgI@m~#P>O$|2WC~`qKn||JM-T=hxprGPf5ri0^ZI!C%bS1C|>mJ}^cG z-3adTd+n1wMQOkriFd}KN2m%W9CIDV08i>XrC>y-J)4|6+Sp+Ns z76FTZMc`8efm^}l*+Z58&*SgEmH0mQum2Ir+~40L{{PbHM=jio_&%!*$R6DP&;9iY zf&c$9$(+AGj`;t}rf*;P7m~Ss;n~FhS$sjIX5t&F^apTEODE~DUKf$qvCR75Q%cn- z8Zf4+dpJg-vV4NRh}T7x5*{3oTP>Jyr)qoGz2==u&CgNj`X>8@<{bK}Rg*(s6`2Z1 z`ycG1iMgn#p*v7IP|xvKSDPl&a%y%`a85#1afNt5Q}zN2{(l_)nX@o}LDdvp#PtlS z2Er_%X`ZgaBXy&q3czyQ9iLYm;nVRVK43B62={m8 zk<>3Qrj`@S^9H?O;-_BO%f)UhU@*IY=PX~;>}1*(Q&TF!bZp*QP>9>5)%Rg-8LfQwLr z19Zw$M@$%b0L3JH#G|nMiXdfcM!+(6q!cV+q@q+@11ioL`?~3Js<-zCePp^%;$qsq z>Tom>47}+{d8=YD2Vq*@Hk_xTS2|k zp5$8~(hC(M

(Zw#LnEQgsW3FL=%dHo4{5|5*eq0u}*_fJML}U=jFFL*PCh|G%H7 z!`tx_n`MN<5%Zz-;kVXOn`!kxnsh=uNmb;Ox2M*#;FCpo6mOokg?+4f(nW#Rihs z#*(+#AhZ@CA)=`Tj`ul(T{fZEIRvUJ0)Q^EfE3XybF2Zm)`|hS&h=T9cxD0+cP35h z56#WXLO&36*$~HF?k6uKdgP3f*>mHLue$=xOiyj4*B#|EWX3-yLn?1nJ|mAlC1rH2 zP^3--tG2W#8cyJKpH~rb*<>R}6^fiYIF|d7n1v;YQ41{AC)j3I$eOGcX5e!p1=gR0 zg;ubgT(V0Vn0TZWGq*Yp9RTc;MZh9p5wHkY1S|qK6@mMD{2wHm9w&Ha{QpHH{|CuG zK=Stz|9>vYpF{kg^YiDB{DX9z#{=;9KcDOY?Dg3d1q#z@DS>0n)&3j}l&LU4|{h}zYEu5O1tJBVXS(QIDSUYqPl<02oaWg(C z(B@MJ1*imK=4qsIdIoC*x2IfKELf%3VnT@5Ma@7~H+z;Va+Pw9;^-TwQqJ8wl#4Y9 zza`d?lSfZTzeJlpF>Sz8ZCz2caE@x|FD4slT z4lu-ajBmPK0qE{dU?-+Ks7qf{tG zwpMh`rdr-GTl{=}B7w7e;tnHh8CJ{PV67|L5@s|3EV5@6RK90Ixszb;SQ)LZAP0GxF+&!UL>5dw3_x zNUk$F^G-r^hxB9((?G>2`Pi0MD5(VG z9Yw^4cE=Is8mTAzmb6>~3@PESTJ2 z7?Mz@izbB%S{OdREGC z=K1=!6W_m+-f=(T_dFlq2T11i19`oF{`y}czR&FgobPjg{@)Yd=hvT0e4oFc^L=g) zcqj4wXOTV*`TKdi!LO3c>la)l|3A-1_$bLQqxV0F;sIEH0rt4peW&pO9FMz6e)073 zLgs$w*PTtpS?kR0DI6Wn0ZTgXA~t{#yaOrC7pE|^s~)(QD(<0+#DDL2OGoXz-&vfV z1nAFNwo}VujqPTCJUYbrlcl@64}GGt51Cq7q<@ZPb)X~m#tBmA*?DoQX|_Gs?d+ZZ zC8X&_-bbR*u1a7msij5Hy(OwzQ@9T_s`kf&{d2TPQ%}dRXo`KlfToycAn2HL6vflj zI_BK7cCU916e%eVu@5%6@l*<_ECOv7RLZN$WvW%mcTkbOx9_PyDiwx91c!8X`;oOF zx+3lmFKwY_nm6R$%W0?!{%HU7Vp5<1Y*GrD5rWQzO+^5MTIa$kEBh|FvW&-?m1+=H zj^G^@bX+Yc8d0cqTy6IU2klY+36h#3cD~UDa+&2+GLuOx$I+KFD%c3jaYz866HRZ(d9js7TlPEx+P~#woRzjExDccs68GSDjQph zFQt-8>7-a%FoouqnOJf;wzM3)fJ&+iBb|=NxWn`g40S~N*hDfKPsEp@5leKMT|B@u z9bC93lnM@~R?1V5o{jjA(6Sx;A4L(6^G(+D=D(m^wj6>jo;P&jH>i@^%>6>^B zDE$KW-~R#0od5Fvf3KN*(!#=ni2rlG{3=0SC;rdh{~?m^p!W}m|8xKTJ&FJS2wi^; z$*ewLb5-gGPy~w^4<@lGX5%+0@Tad76idwBptSdk(7W1r$ zBF-K5yW>$?wpZkezD+Zh5MAkjZjNWLDF?X*D#>FAJ-Fyzbg{usO40aCW8pX{!dj6| zZGjrYmpRzeIkd9VSvkP%;QVGlGoYFEql`6IMHL>UkmUr-iX%!4scdKohyaLO`k{AaC zosvs)5?JUyX`d_t76FTZMZh9p5wHlT5O`1k|G%5wuu6QN`~UxhWFD_Spm>10==HY} z-{;p~NHTvvj|aGeUjHtE|8Eojzmu;2HOc(*o=E(k=~tDD&*{&GRaef=ou(U_F)L=l z^^p}A+k)A3wI+o&2BOnLhEP-*(NfA4sZT>1B*sutf^Iua-ABbJwmRN;Kb&I3NYy>EB~j$L<*j z*ZBp~GA9^$P##ibr!emd26Iu%iUEqXv&8%M zHED>=*A8MB1TQgEom2I_F1PduP}LpwnLT0?Wb2&J6Q-MPcgA5tqrK_)=VW40S~D1J zxO8UiiLy}2_h}+J_(reW3f!IA*#M6`85Mn>>PL6 zibAGF#uBl_@QECLn*i-1MIB480vBJlYh|Ci(cx&Qye#P?rMpYU|z`)?sRP5l1NB>xG? z+d@>bBI4cX5ie`cdb<-%_mgUWZO(QEE&*)Rn z2=owr>CRn~bO=|S&xzC21;;8_p&YL;hbuH4$qcX>-2K}D%)QPhq2?iTU(T9?P)cx~ zquo&iJ!|u?8RRT18!q-Z?_l$LrkG$rsoWrHqq$NzgITvlaqQ=ITWlH?hhP(TT5~L@EZ#*bGKh+!lU%SpuIWhT zk2xS~198L<9hwPE$!f@Uu-Tc5ePND)q3KAWVRN)>xM#=X-oAAIn0?zc&W+R*E3L@J zO-xv^9fx43s;DT-D&k^WBD=e^WnE;Z zigRFYwYjX}eGS_yZVtYXFxt2-RR2O;S+RL7C7W4A#$(WAh-BNnj(p-VDK;yn@XW7x z(#%TXjk8Nc3KV7aBQ&rU$L+&0GJAT+n>k;1w7iN!MdWEGCt(+0w}_zoSI%$>%+#R1 ziAOTg=YbkM!B+5Q&ZNIByE&ZK&R#)D+L0pkEqoCi#W7(H%7%9YI>$sRlh}N1> z>1hF3R(g8gjF2MW=FZ+6x}+f$!;QduGnOOIX5T;O1|gNoW(jk1ur(^}JP9gfXT(XZ z-^me1x?6b1M_Op2Uqn160#q?wSGbE2+xzT(`ho!d&-v{i6aVM&08b$P&#!+8@qKO| zcpJ$-OVAz=|L6SrfyDQ@ec(=#d3?a5i0|J)?|+XV?-Kv#_Jn&7-{<-M&k*DX6W{0g z2tPwIuUEKC{Qpk+zIT)S6C{5d@&A{Q{Be@GJ>i*T4`BSi*-&I}1>OxC=x5mOM#`x7 zw$kl`hIlib-^M4)1DQ(aK4O04lz6n5+r^Ga!7H_4xC=%a$ie-8f8uPIm{r(eZb~|( zz6*q@VNG_C;9~>CIVtECE_(`RH(cSkQJ;E*nc6qA^q-(LJni#tGpgLzpvmj0`=4H; zxg|N^1Mr>&8s*M5U=@EZcAw;=Ac*hW%#50Wi>_s4nQFOvsAwYMXt*)>(PX=Aa0Efi zxgwVj(2jS@ylf=cO2smMHS}`O0n>Etn1WcC6~Lq-ijSOOp;uvwID; zMX?@{Fzq&)CaYv)2>2AU&dgeije1r|wl)F>dZTG_Q`{IL#a!jc34Lo3W+J<{1k>8h zvdLk2QYI^sLk4eGJ|xQ<5Um&4-l;evCxQ>jn`INT>{QPx3*zs8zl2Mgd)kjFX16{*mEfU0Pv=TGww1)-vb zqTHlFa0=vVQUF|#URMXMqD*rQxfFYcQea_CsPqPBieP+QPR~pF&($PfZjgRc+>EQ1 zp~Rc$Wya(S_DSVxQg~*NX1%@sKmpwvVt9AQdsBCmxI)&d;@V|JtbJ>DZYhGC+=WoD z<|KgpRIbAF<5iY}D zu?fxzT+CMu;LE$cu30MrxIm@yhv`KYUm4)9E#wReT_UI+ceR-+7qrS$8 zfx!PCLVTa`arSsE$#+e~g;nDF++Oe=lKJ;Nj`%*m{t=Szp!Z)VzW?JS-<$FQ`1Kzr znSXzj@&VZQC)cFjAo}w$I-a%VO4ml!xW(gfdQLokvT9Ib3THbP{Y%D@^}>W=h%9n$ z5q_s=0HK5G03H*gv*_xiwe&E8M$?^{@FO0u1P!>+7gDyd7>uqM>o&irh*V`p(cpZUY{OtYk(Y}?uF|YCqqySGLd9VFXm-QExR)JYb>)(%MjEor5g!Q; zHvD8a4MsLQM)orL&JI;~w-Ze`cTO;Vi$=cXd4rr=F*5S0&7)=*inm|6hpVu$o}4{orlmL+p=Iz~q=S!rvItlNECLn*i@*gD_+pR$PvigD$M75g7TeDr z-$4BT*;8@hl_bB6*D! zY(uK*rq^Y#+v#2VMpVZ_i4O0yALe|Wl>Dn=zrk~Tq(gOpK6^*~)9y95Cwa7X&@r*S z>+T)7k?F~BjAS;@0#9pVPth2I9Dt9;Xs`IlWJ*Xj26AF{?75~=4WR%{0i0y<5S0;B z@g1dMQV{zLo+~2pw*W=j2S`TqzL^H^;&3hdPt;H|EtFX~S5qp7pjQ)p7*0{wsx9*o zPjwal#rO$L`C>TX>lA95O#S};@Te1Mj>acFxleF*z%KVMouJ^w>2Thpi^YYJ7Me=N zSHG+WYXv1nwz80DCfgF&>5`dj-obp@K`G<&I8I| z=Uc-lrn#@Er4+1_s&3ny>ZXcP;`-60ieiek?jZxMyZK3Hu^(aLdV7eVYaH2YBlyKdR1H;?5)O-KD9Ka7vh3CJzC3=C6Hvd|mBRWG3jZmzMO zNx|2P3MJ>%$1iUhB<`?&B%26uk+OHpcOFHl3IG~x;HcE3lFRyqQt9`uVJnwZHAs|U zMGJg;vJCE*)B^JfDr!ZN}sjfixfBR$+un1TLECLn*i@<*_0$=9w{|9@DM2X+uNx%6; zLB2wKpZC-IILX|<|NX@Gd49lG5x?jC^j$H9W|NLJj`K9!F_ukX%Jf2{I`u*L_KaXVo{si^=dktOx-5I%1mSXJn z=Tugl$whfL@xWz7PUO7MdE}%}Hpsh#j`jZF6fJrOlA7TiaPn!I(Uk!ITcKh=;-O=u zkIId56XBahPJ$_Ep=zdVwS6#9C>zqZ4llL9Op?K61`2gE_3GeGouOn5VKV_&ri66n zG7*A;kPeJ^4u6m|vpOW^jC$R`>pGd4XX2!+?e(c$w|9jUtmW{V8ODOD5#qGW%&SXS zbj*woE64^ulxV&AtVG*rvGm{aJa$!d42*U4&T*%WmQ)^So}EOjmPu&lgzz1ZdU3cx zP6O9?QSQ&D-z%{vcF+z})^9MP8R=c(8VcP|QCC8atC&-vqv#meaZou#84nfSii0kP z!s14XO|Z4I=$Kg$XRFxK7#lBaW^)j>pgG|bMaQ66f?^4iriv^2#Vsm{#XS#7DcMUu zAJMAqnAJ;=Zr&GJ+(J4DGcd-3?O{d7AmC?GxC7@5v=qF-6~rux!pP5wDl9q%1(>JU zQRnX)j-tVqB;PCNsw-t(>F0nd`s^aZ&k{C$sG{KUyx}i}H|w=f7HS~v?B@YXCQ+J5 zHkC0AK7JG(gOFUn7g;;#q12JI)n8QMgskwKsyIc*!100IbH_bKplk1@X{-qTnxio> z5&L8jxG@C2+~fap{{QRfqc@2EbH4pClHWkrpGW+k^W{b2|4*gsFDLowB!3<8e=gra z@>}V8mH0oe@6YT1^Ve6&9>DZj&4$l}UhNNh*E*3>uYI6O<=yni&VHviH}N={^05n6 zD8Rp~BS%y`Z1Nn@)tuxy(&nr}X}B|`Q%9w}-#H!+=BgQwifRh>1E?w7dOR&xr7C)Q zEmR6C8;A{DNih z`ze~IiQF1MuSx&7Gmw+dgLRQm(HCJ@Z5WIoO2N5?S@|gJ=Z}P8>E!}d@Nkg}(*@vy z{l$$mI@j7q(nyv1Cxgx@I%#8O9Su6PFv3i)w0}@Bn}oH1jYhYGo6@l{SbJ?%hIxZ4 zBnSi{DtFEf&}n$mF&;e76$bcw{?I2{zCIC0WTYS>1m8J_uUw!0lvv#NAmnQYup ztt}7?je1TwJY99V*U+3m1k;n1d=*DvfjWb)YU*rdo$%I)Ec|qGp}yMiTAQ)4UD$nk z*XCMMVo4}}?oMXq4P|9DJR_S6KdxDfs~o?61NI)j3kUWdRyuw*6od1OY(BhMD%;*i zh={D`MXMi9dl$}HcwkV|u-a_FL{FwA%2RkVkGmFcbo7P9ADC8ju&zrUTkRH+!w!+*~TBkp#({e%8|${AgfCag3SG}fT(x&gxd?zORGpIn2hbiRtQWl=@ZG6SBh z+W<-?+|- z|3Gr(1s*ie;+c8lX3k)&6rbn-7D|n^RyPd7yV?in8gSrtPmDE-rlZTq0#789nI*xC z$h3^dmg3P^JQ2^tqOAAX>={T?p?^x7>#dMlpkXE zP59jt)Sk0ySHFI0l?qnq!hh8y6_3qxxs9wcDi*Y)_K<`ux z23n^sW-hBlIt?%yFypp(n{8$#Wc?9EEFXbIQ3u@r>8NF&ECLn*i-1Mo(-eV+c>G_E z|G%65rd8tquORuuBtMPhZzp>I_s74Vn49hC+Az>{fYdEfS5MYCV*Ht!3^suhaaHp2$yW#InG?q8#B$_~?NAcyR1q zq_?B6rNZ&AR%UwJvj4XTSOhEr76FTZMZhBPDS^OO5&yr(!mSg1z8C)oJzw}D`u&jP zFC_UY$-HjhHp#q?K$+wR(d)mJWZq{mPVxik`qz`p;}DW-&0KK}RrOHFzv|@B-mkfu zhtnP}vk!}aMZh9p5wHkY1S|p;0gHe|z#?D~un1TLE{MQa6A!;-LH7SYk3KVn*D#yF zGf93u$*&^0N&fyjN&X1QygtAl`TKc1{w?J1=db@^l6m|9_y6;Jg4dG&pT`IA`hV>6 ztD926X00c$+CS|?Haorke!n|Bk}`rlznR8uErcH;&|hqU&HZH6O{tz}uu>Iw(7)<^ ze<;5loSULAOo$>q*CxF0bqW!*ks`FSgZ@6tl0E4U-P8HW@X{4b!q2YJx0aQn zAhqb#b_X}JCYR6!j8$q-d-Q5@!iHYQgE7hsnvE{-5?r15jV3OkR*_OM^tzyiwZcVQ zA9PUBmJKgbpxycP8KZLEwh)zo%H}$C>r$k+UfmN^Zjh@UUNpJfAJ~iq%$)El?{Tdj zzPLmUI;!TNH{hD>L%>*2{_xql*8*78oD%40ezsQVATApIK7P_Bok*=1G+JW_9uz+NY@&Qg5w zce||9+I+J_OsIGVf-g|P zX@yC(%Hb)0#T|{i*CYetjayNKzF^Ekp$WyWIN?L_VO=EjHrvBUzCDy{VR}g%7;PI#xAextR%BTKsZSld6FAve%Z=DsI@KGD#Mj&1Og~E^E@q=*DNC zECLn*i-1MIB481)2;2k&z9xYGKbt;3N__t(Nq#5EoXyoKbK(CZt-_qqT6 zZ%KY5UH=i{|2$rR`~SH;;B{mV;PnBo5dUZPg_1$9Fr3)B*OW=w^NzowuMW&dd$L8Iu7)X=8d9}0 z?KzxjW2Ol@e+l-RX`4nB0W7t`Tarrs5!y2DN(}l2n2Rue=*p;Jex+7;=2t=qJNHz? z>?ZJ3jOOh4qUNRA5K!8XYVYZXcRa%Clq_L4vx%fI8I~rNGUa602yYE2jaA(xJkT|a zIxf^sz<_JWU%5~h>(*&8EVobGYw~)%ajq)beqh?u7y!y^2I_WBI+FkYW)3)Z>DhUT zf^nKvRj!AhsO8Q{|FnC}?MeIMjrWR?yR+(WrkkgIvItlNECLn*i-1MIB4CKXLp}cg z`QAHO?mj5`0_W%dgJjO%H;CVJ{{Pz~KbbzEMEsuT54@LT9^YRfzR&&ne@ZfsFL*lf zeV$+N@ELzU`-)#8nd`HEuc^Lw(D(ln$^82BQQCn0J>0(VpnFecZl8EL$y~p$zt8mg zU3kxCAv`~wbmZ$qcHj+`kKi|_gO_}s)sTkG)$oz6)Jbp^l=kK|beqN;%pSgB7SI?? zHrK*e97O)cq?4D&uR@t55Oym#uMrfiF_3Jog?CPNx}L;|aPd_p)$~-`8F#Yb z+;_1oCdkk*0f}wNz8`Vu_ryhQ9+Hp_N z2Se_VeDTpuNto$w$~zn3t%^Hi+y&*Vv0%`qJIm~bu1_1<*$i(i+(7|USE|WcatEx> z>)w$YnJ!_b@@%FX4Qy0uIxIAoLW-iUcru-a?UO~oB480vBk;8z|G%I2g16%*#+RQ< zzsV8*e+9`OBANT=znl0!=j&fZe4q30x01~J_wE1x?7a(kY+F?(8bJH<79aR%8#~hA z^}*ie{XkTzQk7IvsmG~R3G719m1OPgN>yrwdTcsr@zJ6@L{t>T26UgpIfs`BzT4Yg zMZMl`+pD0h(5SaBm(~UwKgI9bpsh{ce^!mTveuky)*iDehv&=(CwrtS$;gc21hJrRFV6u(t1F zFVc0%#|0i{X^+@kh41SLmHgQTWE|5fM$JXdBu^&>^wzTcv~iYJ-(Yd+MQm1aMsat zq?7Ljb=$&CHSOCyzH5jU>PHyorj3F?K%(2cjgW+}Znrryw|L`S9Ulc*!KMo50J&TP z6wK}OnH)L)c4+Bd!&6j_K1Mv6Z1}7N_I0#7fR)s+( zEgz66EhKj}@nAtii<^06SaFs16xz!2G0RqWaM0{^P@#q=qh{=@(Ogud#WhDinDoad zIR);Mvw*XJvw*XJvw*X}m092^WAMMsk3U<%`yVA)&i8vY;r}<1R*Qu9e~9E?B3a`1 z=MdhP{DJq9{5|yk8sU8zKlm$>Wqm=D@c+N2_kRK5e-V$^v1mWF6ZV>C=mn^HlamK$ z`AzP2_V^fO2jD7&Yx1Hs0%)Q1^?ppMPaPXBhgj2MDW%7ut8b@+!Vhy<#C4X-2Cs5qsN79N& zHtU5C<8{%1pU6C?nx)LoHWu5y9(TNgdq#Ann ziA5wdigIZMLD4H$5dTuP-k1s@iw>Kkytl6R^jEc_t~nM(PjUCjS-@GqS-@GqS-@G~ z<7I)Tj=}#gB_*Cgcwg4vzn^4@?{5+Qm;L(wnq-OZL&E=Wp`Z6S!u!8S@-LDs;{!Jc z?@K=ZyGfS)0?!Hm{}O%wQwje+0J&7)yWOP_Kvm1QMJ}ZQ0;rAI(YM<`p)Kv^*~!0B z*uJd+(5v(w6&Qu=slo9rRrvY1QrJ5bz1x7~#k_CLjl8QZ6%>O21kh<3iYZn3T2({I zj)s2dhMt0$@1~gAK@pYWhLnEE<7dgyh;7gdQYNC0R|g zH$YDHP}_Wy_cFk7h-dadj5ov>%Ill#1F{*2>Xekinky_97g_wc=2&$@c&VJ@Z$~jx z<5;BezcMEp86JY>`Bl+^6K-wzNB-RdV)KjmzF5W|$3@W?@d(3ZRL=9`IpyFqKu-fz z$w)TbjB3sw8FbUaZ}FpZFrPm=O8o0BE2o}Hq6EWG4`H|#%SAo`d8l&HKMUI0jd+E- zRb6|qP)xhk;z3jnj=(W<~de>~fR_eB>qz#dNHKcy4S$?rH(wQJ1oCLGk?vbbnpOSN}MhZ}4 zZJ?!BxA>N)|NjR`mVEpJ!v7D_5B__SWj_CP6c3Q`gQpYT zm;D9bPqOSU@NI1u1smIdrfU|Rt7>Qi6&)O+228&p)E;WEu>o$^EFzP&!EstFHB#R| z5)jd`_$7&Wj$y&QET3cHf#wsUw5W-wUU(GgKqkEEXsN+^UXH&*J-;uy0?g+8;UrTq zs8ppR*0ev6TgUN?P&_|(0zl`OeA>+IF|0Vog6z&awYZ?^-{IzRzUs5vntAU%)Y68{o3 zc@sr&6r}(_3^fv-XK_fIfbN0TNO1ZjuHcR&fu{&Tr3G@lI-mF;j!rmRN9sAPQyQ?S zXm@cI_Bh@8m39|cb|p`~X2!}EbsyfK=WG4Xr;jqItq~B=Gi`@`eqEFo^lk@w!#`0E zz;BDF9cJUDY0>7ygI@kD=<+84+Q-_SXf-AS+K}NyJ0Hbaz*)dqz*)dqz*)dq;A$=K zRb%kK#OD>l`}fnY{x2j;d>;`0m-PaVQu6%|lKjK;{nrTZ%l`epPqNJK_XzL5h~EES zNtW@4fbhT2$FnGF^-$K@PMMBf>757~__YHJRO+1EwJqJeMpREp#TXL*o&^Wo1Eu;H zj8@gPyu!k4BZ{=B&m9I2>_IKy0n%u3K!(h^DVDLtrvM0b9=dvAy>7zPu)wpJA}GME zhRCh}@hS#J;jJM<=xy_-TngONoZY_dcMNkXqWx+}T#EjE@pVUR#RSBQlLRx0;eoGB zWt=(%jI9}0+FUT>75Su!ku8he=0#*Qib-BUp@*U|%xnmESkz5;?ZK(4Y9t%hTb$~+ z=}ck2-92_Q2&mD~W@_C{4|Qq-dL@|lUCCnK`KRH5K0;!O0UgSzMP$HGM@ElF_sLnn zS-@GqS-@GqS-@Gq$^u^<;r~ZR-**T90%V_&{QD;n-k13P*GQK9{zJn5a=zbV3GYjO zz%P(2`TaG*`?9~_?~*L@{Vl@#^5=a4;r*Y3PW2srgXnq}70DfKJl);=L_OTS`(6Oa?=`uwLaC z_t%4NfSOvv+4-H89KTEnEW5LTpfqY5UASE?6NWJzTZZ@y4HSl z>R_bK$}phZ{T%;X?Td1XPIGoRlv1@{Zg9{QmG=mtc5wds2o2pmh`NrS5^H6+IBY-? zUvZo(Lq>c*Z^5!k=MP+E(U(HfK;M`2I18R$?!#HYS-@GqS-@GqS-@G~6K{d9iSYju zBW0?D?`6LJJtW^p?`RX={{fQ!ie$;pKPS8|;{{J5eE+}E`~N-3uO(Ub`Wc=WlNPZ2yf9p}B*JVG0_mV7MKSn4-#6R9Z z?|&FtBMMpc8xS8aC0YKxpa0m=>r#Fl$wHrvjMl)a;5YjM+wF#je!m%Z2!(9;XV-== z1$K?M=hs!&`P%A&2LH=pw|{Fkb2{vz{^S>K<`dVtW zG6;H?Ex;%VSlLVX_w#Gll_pw4C6&aMs-%uWO-dr?f2a>~jDSj7W>VNK>ADM*1lEgl z!WESY+si7zGpJN(b`Ec8+>MQ()9+sP)+W6+@=0TjVj(dw#L#Rfqs4U$n(g?9;K4+; zq3!1lj;`hPb@UX~K=NOjpP!psoS$DUX#omkUyGVE3+Y1p;vD=Uk0>+1_^YwJsMBCnb- zGB_!#bBl9}i%UzZ3oB~Z1V#DX4EG4_qPpTpS3cA2HxI&2GsbQwwKKJ(+UwVq$ppgA zYSc+pFR!6{gKc+%@Hl1qCHGh>HeAqp`KgL+YC|7PiupHT9Dks0RizDS$RZTt(;T0+EOwwE6gTZ+m5*u zD;15oVbE>E?{oHv^vywePJ2*%ks+lqUdfr#;Dc2R##>)DtfOr`{*U(>jQ+CS}P14p{QtU zJ61dHNfFwGoooBeb~|-Lrag4Z+CwMh{!_V&>ca09m{00mam|Q~LHE*&q2~+Je)h-N zD`}Y{!|G=JW&rnV*7KX4{xuwKtu)T&Iid_u7Avjxtx@dg)w$0R&+qj0a5m35OuMU< ztcs#no&ET&`+q`sU)JmY zD#;Qr-yr-i;|K2}S?2d&NcdmI2fm!}zR2&3kAFwyvB{%6zj9qXMB=`|rLO#jT|(F9;Wbgmt6t306W_%nEe7nM@`A~{MSjb! zqTdFyAg$-w6l7n88*MHFE?CU)Ds*rAebEeUH$eG0GPA0QBbiWu*h|<`{lQW2whVI{ShR8A;}-XyF_e2)C7o+Kga)t{Le`K6O#Wi$?qgt#u;KEOPSV^{0|7FujofDaqeSvYcbsCt1!lI3`*4IcSh9`yQ4^mUR%%B>Bno^A`$@ zY^A=DDdtLrt?WL+2Rq(&v6k7b)=Gu_GB~vR8O$I+8v=A9L~+7?Ui=34;Vj@R;4I)Q z;4I)Q;4I)Q;4I)Q;4I)Q;4JXTWdYIKUwk}#2BdcS5P5xpvA>_>1-wVdlCLl8|K;l& zl>fh%-v1twC7(XPH;eC=^#UIxS^m5i5FbGPyuTw^=Ko(oe1IRMpZ|H3{}=rUHcB;( z(lY2A``vQ{+?D+JMlU?oJ2h2P*z46K0c~mZ`l6OTF^#R-C~H~pf>|Tqlkoo===DD$`2mujtZ!AJ z3ub!Y=)W+tt5pfJ^+hkZo?b$ZZd?BO`RsGV=jLj25tv*h3G`p=JSMu;hMFqmzOP?LWE%L+Mn z%RkVqn`tDV0XB#-#9(ewMdi~*q|7E@ZPmnC*2kV6QW&ge3Ciy}7{v*Qw_mcd#Bul=)iz)vv`2vrk zdVd+OcoWGozVOUg{r~O_4Lut3lDkOGp9k%JIBeH9N?4K8$W3D&7%vu6m>HH%URKgfi!BU2wV=nne;bBk1fc3B)QH*)JP*d*RWw z%z-}&pqyN51gB^1k#LE%NY$*ODhL-zk^@q!hBDyNhE}_8UhA~oHz`L%Il^mN_$)dh zIjxt3SwkJ;Pisjr@FTWE7v|B-(6B@E7DqWa!X4NPj?ZuT7uqf*u0d z()lB5)xMbqQOav0Jk7f=xCqe~BE(@=;Z$ z-3x*CB438(+n}#g(j^3P7GFt2&Y6;(GN*ufVLJs$VH!Z3elO8TCh2w|`K_o1Y-d29 znX<(;>mbyinQ00@54Do831bQj)g2jqR-$>AorPUJ@G$8PQwJwR`@Y6UO6X*ae*ShF z49>iU+Llb#@%R`??Dh+6FMVL=bQlRCk7Ptaggi`lMoRBx69~?<5EInzsIdO@vHifemq+rQaXf4F8a3{S#9(!=mg;EzvQDD(TVXJ~<0G z3pfin3pfin3pfjW!Yv?b`^86E{r~GnFU@Qc-oHcgdr6l0{^t??m;3-Z4^Y2$+BPnmk{2U@q*Wo`~dy_MZ*983UaQ$Sb$dT*%g10fs>)U}`w1-y~5-|Y- z3d+^&P6P()1+fuybR;I(Yfvb;*G#?6b14&YOt>}|cJ z`!LC}{{Iz(|G$_1s>c%Em-PcbK(ed{crxLA89#V{WXbd3jh&^6lQc?Y?Sz_4LU>r{j}Li zQ*PuLv)y+jZIu`RfR7;tP;Br?{%DtYAz~AkE;?Z!w0`UyQ|rCU1T*>X8y>brj2{YO zfRb>ZGmh;lHu&l7qO>9Ctg&`>q~gRZ6d<(3iX)+H3i71QtT&-rF}1#r;Z^F9iDa@~ z(srN#C$&NFL=10E<9qC8_))Q4#Kdlag&zHOvKlXitVW!$+l)Hxu+PMb;Uzu&_M?@N6D-6Tu?zRdrNS%2c= z4&i@UPw*td`*((~&dj`B!T;Y#_+S3~-ym7&m({yN8R2$Tq+(+g=>#bzjtM9!S`gh0 zkT#pqnwX7I^00S+YRya3N^06-j1`qA4UAy`L0OAh|17eKq7eaj6-RoF>)4L>O4>{h z3XICb)1YHE!%uRPhV7u;)_@wf{9maIMiGOcNvCVZ2enzy6$EENvm290p;QO2&R<_q z(%GZ-W7!NJ)CyvB2SdHjHCsg>Hx>Bn!vQes+yKb377#Y;x5CbO&qt|(4jU&us-mnr zjvcYl4Efot-fwiwQSEet+m?0%kt2C;AbewrC1x{x4gl6M)Vdo^YA>bpsUXA{XbM@2 z?ibkpxH^w{HsXWH&7C4bgw2r7b7(Y^vc2n9TGvu;^@&_0d-) zjly;nPXj{)o1Vh%le2)cfU|(JfU|(Jz^97^mLvSH*Z<$4KXQZczQo)AmSmZa-zWSp z@%_6=ehGd5J%s;7zFvID`G1n{-z5Am`26DIBP7fIgWpE@U&bRopYXo;{tb_xdO{Mo zeIEAC{42;{1KcQi&UI7gvJH!>uutKyt*x!EFD%ZjFRzL;bj(P=Rx9(%3wU*5X>ECN+0-{Hm$x8?2YR~% zCdyh!VrNlGVq&Z3`D5a8K=FsYKx2_uHrEs}g_!9?&q&jvZdxb@iu%p4eKdLfjb2M) zLi4#TZEA%v`jNw}6|~QByZRli6<>Ko5HeD5%1RedtYdQDjUhzjw)s(!Tr#GzQONbE!r1jgj-tuFq8F<4#G*rP>*1MvSo__2t$J%h`NIazfw3Nl2dcRm?Dt$ z-qC^H)abi>gI^y}J|DEB-%OfJz#LXfht0|S@(n(;7&f8y+iiX1`82Kk72*Nlw;}Ob zzQHe(5bFx8rt{XPXi}&V|AnfC@J{&#KR6(CZ4Xctqb~e(x+cp{#Qrp%7k+_<&^47j zK83C$4oobJ0K1xIbd)WIh=}cq+wig@fK{MT?T|6*!kET~DL44slQL?bZtF!_1%zWR zm!EE&LLM6;R+?gx`#(H-`^-m3mh}MNLHJ+3{}F`u zWq-f#R`UI_|G%6c_-4ZYvLC_M5&oC)g?E!If8V#z{687L_#nx5pr2RSV%PVM$l=4X zcVx9x50Fb8S6c;)>Os?7Wv{}A!d}?c*uBhP0hrndTEskM({MPi!tW0ttkG+QgOi(n zTbtArnJzV20EDAtzt@Lzq|!~qN4Z|u4YX(vzl)cilm}JY5bg0Qd^*Kw-yHUu7+w$= zhQJqhPbrjfzzI{@+pF>k&)YrGqwR9OASuO5k1i$=HS)El0f}CXUykiHyRms*q|n58 zP>je+-BmS<i}46z5#f;of`15RMt`b`&n&;og;;sme0$-h}e zD?lIrYv0rY5LU<sR4!n1n^@1H4W&0|p?Rlz$64LLNsEbIA_fMHx5p3Dc>~m)sA^4G8l#_P z)67Wnj@&0_0cQbc0cQbcfls^zL~dVvJbdPHqkrJP@5289*=HnP_XzJxy#9xZ{4B!z z^7Z$U`~dyL=M(;y^8!9XvgH52fbhTkegB|}@{5G2>lM|hQ)Uywc@nrk4gb_DOKjJ@ z9*PvF>OJu=qB5xs7}3OXuUGiA4rtWzJ8;%}`ZT*pPebHkG3j8U_S$SCejc+Pw)8CK zbkHFgu|W=4l%J%pB_CbGa$##sTgUO%14u}0c~Q7-REi(jg7Lx$_m^5lVWw!;D`lG< z-$B_>N6bmkZin$E8udPmT?<$^Q^iER!Y4)G1~}~9*3jwQl+o+tO<1K~;lrtV*uU*# zRH8jgNEyS9FqZN3RV|DYbkAaZ0n4CK@*2mU7QxBXgJv=Mqdsij8Z8g0#E$kQ&l$`l z;(zHn@f*uPr$are9qDMeFh#{yaz8H^8llj`-+gixa29YDa29YDa2EKav%q?U|35d< z?FoeMWxxN|kSzKAUrG30=I4KtWQo7G3E#{7{GTd#KTz`jA0YWb(%?G?-^={{BMHw- z{QnY?WqjbXDZek{4=*NJ;D7P)h)0g%8FK!>cakjsp2t6G^t$|ee~e_oXDAl=!=s8p zt2NNF^5au63X2t~7|q!e7&Xn=EAH}<9vb7P5|b_a;;ZG>0PqG+w7ARX4j}b{jtn|@ zpLWoCG9xW8vr$<-A9$#2Na2f!atEWLe4t%KM5Gh+dg1Ab-eY1vwiyXa?q_grVtMBgj*S^m@K{Vov|@4D zA^fJEP+ovi-D2nnVu)xJEx1wGVi+iRs;U&psZblSkYsFfOmB-~h0lsAhFz?h#*1Pt zmm05GF{a~-7Qw6{DlBvc!`-YS>f7R5$J}kSXc5aQhJ6efu^oB>MqP5P#yx8){8k^B z2NdABs6|6N_1&qF+9!tR+~>&cC{ ziI`S=bHQSU`*P@Dy8k!}I14xnd0~e=o^0fB!tf`w}nzImxmg z;6Eq4FY5z4ZDYk}Ts9 zHwf>`_`!P>{C|`1zKkDykYxGu`;Q*Q2jtIxBw8inPn>x<{k|8Ie23(Jj8O{Wb@BIX z<@nU%Ex&t|l0~z5oa*>elpmx;54N@}6g$WCJfuJ)pUf_&rj;8QyN7RW@%;}J{tuP9 zg@$9ji%C^W`fXzv30nnzLx;jpB`sGxL8}5W(>&>j7#PD_7V#EoInfRiobgFbr@(PD znPaPLvDI(@wEB?=45v8cK$Zp|w^hlonE+eivEP}Ju?~oYAfirHIrFSL|95Lsj!%7k6AR(5$CXtK;x<2 z8gr5(nhY@Fh?*kZTQ~RtMtQmQ{VoQXsB0U^rkG2T-XNX_rlVldw`S{H$MDR6lyd)L zWRFoFeuPmhR%8j<^^+{1c9EGHlWbWur-34;desQiT*{U*7olz4;6IbRi>4NWnZR7i zQX=|ky2Nf+c|l!-&u}8OK_!!@sOe}rl7$Tav6=5`;YQ|iCT}rBKuvtng2mXck$0Aw z4zulPtv}4s)7o%A3l>Aaa+tlW`DHwt=}opx<-LSf+^5fE3w#~0z4&@cXj6{3=uohP$ag2EFjC8=K8eZh}|F`w}jxTGfvfK)Mf~-Q_cBX;R%mc-)S; z#q@xVG);9~@cWa=NVrobjmrE;diDx>d25}y;8mHt(QJiJV9kb@g%w$atYmwGk5X81 zhz;~(SV@bTgb{T?Q!ecG!lP@M1Al~nPOdeA)3f$Sxb#(NfwPU|rUO?%!9l22FreD3 zMVpHp8p>nK9i_B+Sorn62=GC@`Tu7GMIOMht3B7vx=;jA@7~F$a`l)!#P>QcWRuSVv)67SY zZTHDpz*)dqz*)dqz**qa)B?|l@c$P?f8jF;-^={|Z<8$XdyVkD%%}f8$ueHx5x$r4 zfd7Z&`{_5_CcH1dU(WlJ`2SxJ-hVy4|8oi7%b)*Bl7E_BUs3q}KSQ$o{sQIu@6h}I zm}FUBa7g+7H`41LBU$ndUPSqS$#3|4%J<9o#@k31e1)vVq_}L*z17rvOj)t}R<9>3 z!v#y!1SRqoxF7N4G@2+I;i#Ap2*3|cECc;9o41H=iNzas z8}K_vDYXjLNluZPiy?bKzc-LwvUz?+B^z8|^K0;nH-J-7$z_oL;+()5=00?COEsrpDZ~{+;=cS;J`o8neFx&egQ>eT8_!^XSeuy&a8hNUeQ91 zDBfvkIcvdL%7#bX@VJHjg(S=FC@M(c;;UIlrjQNZ}sxqUP!d6=aT0d#}hZ?O*)m-Zt%NLJ-7#au)cw zSm5g;{0|UIA8*HJK=v7lcfXPFzr^dmO7esB{$~^Z|4EWRO7dGseih+=neTrx;s3YN z>%UI2`c#=$r?=cC)X0)l+CY>Ld_zxkZt;!BgBU@=^O{ z*wUM2+q)COa53fJ#+qi%Zx;E?%uS#Hzt=t=Xh&vRmqMY@iEJr0L)sI2)1taz6GIn~ zZw@qdqqCKI!T~;&XpyiI9_hr8S zUy>~24PQ$5{{hnYXGxavg=bR!U+7!f;wQaJ{&8D(hk5>;n$AVI)BwRt76~k91d@9M z4rH2$$C!o3tAQ?4jJ{Ohhfzvl*GJKPEO|kCSvC_?a(<%L(tsaI+x!S~F+^9Q(`K&? zls&QG1b;n=R!tqZOBQ*d5^|-zw2Eln789KU<4PIuXsO6=ZC^q#K4_)$jU(e3AgQ{1 zW)6F)XtBBcmKJQEZeNX|1(b^XeN_rBFqq)Bf0(+0cQcllg&12q=w#gM7S%Z=G;-52 zv%JkDCN;zq!r?Q)<5HQQRxE+pq0eiaE~=%);7q`|ROYuFErp1~oPxiA#(cN+TB}Jy zo622_@?JyqtyJd6giAg`)}7lv3Ok}LMz^h1vQ{gd5CNsMP)*4qnuXQYu2>tb)RCbW zP?N3{J?GsgX8~scX8~scX8~t{tFeH{?Te3x&wS44ANcQw@qdB;f0Vv*L3sbAB!7ft zIe+h*@V?~ZKZ)?Y=s171V2{C!U)yf5PeKSi?qee;C(Uqbr)B+2sk zR|)^i`h!0qS;iBdOZe+Q{8s0%Eth;;OsC+Au+HzOslYD)LcZw$}x=}#hVU|;m&h^u7YbL1kqPtF3)0?q=?0?q;n3y4~O@$v8( zo&PWK@;u>vSug)fB+GpJCgFdH*WXF9eEpjU|I2=Ue@U{e4|qA@|NBO&%zQcFefj>M zC0WK3776cvFW$dh<>wZ+&(MAfK0qftjC?vurbKcoREBe@xSMDaXDDafwwP2sQYdU6 zgAX2QKpOGTj37}b9Rbk>FwHgJ-scnQw{Pp6lP5@tshkM7%1}35Ilkj0luK#+XOnnR zJ9i`TWbo*=8+`Y78xZgc+}|Z7SBK230orUg_)Ph21c*?o2taX+_5{aME{mAy9v@p5Bv>n0>Bj2pK7rV+;;=bWGBOCPVD%dP)xoPeE`*?JHb&=7aegg z1Bl$o@GrcflA!9GYAV{JGPU6ydUzVn%#H;L5{rI-nqNJU92qtBMn-{ok{2M@Lk5_* zQ{dlxWHEhc!QIqRy6d6Mg5l88GtPZ-7H}4D7H}4D7H}4D7WhP2K=k$(9}l1T{Lw$~ z-#NnfZ=kRIdy*x;e^0^p?^p1Di}3yZ^!*Pfd@twu{Se6y((6wneE&9*f0tz0f3Hq> z|Mm3xeZhkNil2`O{`{6sEc$78`&=)}qWc8}`pz{xJ14d6Gi3vx&zhkPSBE z#j_PYkQM#9RU=LSxYV{vW0b4%F>DsZ2juKQGtg6;teNto#xOCfVL?r7f^2P@%_hh; zyV^LyDQMZq04L!WTJD(A=-C=Swv)whu|rWIk49+fB3rfGLB+fhMnNYn)9$PBci;9w zH-+>(g(b1zNkw5vQ+y)p@qW190-y zmFI;*#RP@e!2u({6x7SsZBBGI==aaV!HM7wshV9yqeJ7itn;H$G&n|6FSs2GEK?w* zptP974%F7u6xzww`9~!ynrEGZydc`0sG5~Wz3`5^qtBNQ8B(%b!FMDE?x@or5bsHk zC1>{*_}Ai~)e5J`!z-2(%{2`{vFsi{2$e-=xs(eqvY{y=rtpVAEi}0Td;FqEq0Cv( z)7oBWUni}yd+N$5ZUFk+8CQadKFlu9Q+g_bEh9G8kk017>+u-Bd zxGsCc!dyWQmqM62f{*1U!T(5d(uA92cm@q!diNh^0cU{}3uGhw|M=+D_u*fF@H3KM z{~W^qvi|>lB+LAKm+-&D`;Q|0FZuo7OS1g_ClLOBBmKs=kSzHEYlQ#bM6dsW5)Wt) z{+GY+uStG0z5f*y50HF>FCzT^I=o)AXvkL#x+$*9-5$dV!(TKbO?Om^7QOh2qG9wc z^mdJYJH-!}&9IUlp2$uao_fViesOAX(77pE?_EWIIJH#)vfd^QEjl_Bo4w}oDTb&7;uhak#zsS5++)lkvrRmLQlTs@3}EO$8FT!nxWk{jQS?th2GN>-*zmfP`KTfUWZHrjoj=4D z3{i}wTF{e;46@86S8g;eGl0UPQ8tH+&)C{hz}3 z-}5YsXg|v9Fw00I!&I*g!lJW43%MHA!-!-<#2=n)+_yCc{A(G09Zi13lYhplD#-2}v1De&V#8XIPcl0i}3(Rb7De(w(KM3 z?qToRC`B8+E_t9z5N3I3zc`#jxXJ)H^BzBKD0rwXuw%6H1|A?+&WV^yXh^)~Ex6D5 ze#(qL{_aCSMTw;$lWE$0&*qO$&v&t$SJV$cC+wKc?Pi95!EB<%YDWZEqV2?tW~3O* zaPw~F7uo#qT?_~4rS~VWSxvQf0%o`)%9qv%Wi!ujX*Zmd*cN>PRb$y^rqOLe3rv|N zozgSieR39X7H}4D7H}4D7WmY)KzaHe@r`n3VVVtN?KuZu=LaCxB`!tA+pyo*oqtrtbY`t+L^vhklAW zqk?NN6%|4!17t1V;Oit#z-e%t)>3qeLx9^uq0lTC=i8NUSX{x-7OW3FykuWlznEkT zAOdCzFO_fb*-*lq2jTJ2m3Mv6Xg;QakmVcv@QFArqal@(hQpGpEW%-iNX4hF%i}b6 z7H}4D7H}4D7Wj;}fWY?RBd!1cYep~4d;{TqIZsda1C;sx8sU9eZ~w=Nd_?$P))Pqn zzkL4-2>;8U{|LhWvYy}-B+K`I5#fCyZ)|G`lWokP?gYK2Kv%orq2F(Y9l}=|&33bM zn35UZ@mrX*?9bNx^Gi@h$aN=~$-K5QY+w@ug!6Nwba5O`WW?`(;f7u^JXSlDsvjRW zHT1gUzrddrqp>d2Vp6xP_#^Qr_6OkIJ{`KLHIUFvg%wgat-sV*-8%hC%aA$wdLhGv zTyMf=qgHomHq&VBWA$nc&ZbZd21|P4Vlma+mo%7GVm(%|?jWV=)?y{qmf}!M=$d9R zEkH6>v7VnYo{_(nAc`x2FR}lX2!u4*o(iVNYStd;bIxrPOIb^`2%Qw$(aJo=Dt6*` z`U9O%Vx^mU0E|W}+U+ykT(~yW=!lhS3hJ919oLkdR?=Edjy2nY(@BA@Bb(3@dG8_|DTn3K&a&V|B7V!{e8m!_tRhf7{dE@SaEV2+f`OS(v>5qZ^xK+hoQBxQ!zM!lqFsQ2eO=6G!HNQKqTdzS zY9;to^v}ZHO|8KdH(jh4303!^%U=2dY5;PKQr$ye2ah9ifA8YjFrzr=Tr;#<*eQ#@ zGm1Z9*DG0V*v?e6U9@PmP!!QQZ8>=~9R;ePCP#^)$YWT{@b8AAe}PEi0h+)yAA%kb zNjwf48kaiDA1RMIjRXHgFW{M=1B56>h~sh`872M`*)+@VTRl=RJXKFE_k<{0Pn;0L z0m)h%5Lhkfswz#|(ja-UAiZv45*0Tr?B=&ISw_2uZL0uAanJa&n(mhkE#7FpU(nE_ z1!mD@r&pmKR(OHEZ9o!TKO9aa2I4XWe@9e-rcliQ=u@y5~Q>gJRYNk{}Mp(4<3O=?wq!BI-`yUExJt#lVM_> zUQ*3~09eMP#XyuW9N=<>kD$t!iKve#5IsTJGsOp2Yrq#IE9}986#g45ggD~LZvIRaK6$kmJ z`oV~dn~LKBf)(tJN)l7?)YgL44Ggl}dDx16KP_%O0pLlgx-w1>Oe*DQp#03Vju!J~ zhSx_*2Tblzvt$X2$QYRJv@L$u53#u>nx28BN?Hk<$uyg^yv6TlG<+_F?N*@GnlWxQ z>?kFmi(AbQ=Oh2oeR39X7H}4D7SJuQ9pQhy|KA;YyGQt6;^jXe`DOI_J%s;dzy9AL z`Nj157U6$6pHIdEWdDEzB_8l+B+J(iDIOsE2mCq768~RNJV4AF^!EABAunwAZ~I4S z?WQKkohVNw%waP;mArj^_Q~_RDPW29m{jI*%>$koI-7a>d^7^z85(I73XvC<>ILFg zCzB&0wqdjmABlMW?NA?ycsE@Z6_{o&RQGQ1V*=jAK%ZPbUX@YyFXpVn;WPNgUW4x& zdlyYmRy3Z$bfFZqKh&1cxStyQ0&wi7Hn{a#%5A*mmbI~m&<_VNjSb;7_|@Lf<^uik z!qWr4Z>tkX;R)n5rj?-A;Folx#{ed%>skBp27);>94Hnr-9Y^Cjp%sL4?0I(t;s(x zsHBW-#)cR8FkP!nHX0O{(#=pGX*dD1LFpm@4uPqyq1Ujv9ALKNu;0Ih`IXViF*D%` z2*X8gSV(%@x=+pm&H~N?&H~N?&H~N?V=b@~;s3`)?|T>i1;{=l>+Nq4-WT{6`x2kuOR}v0{~E&gvcJGDDfs^xgzw)7)SplQb}Mp1Hb=3LBADV42ePd zt^=Mv2yqvp>cj7!5|8Ct7J-P%N)cLLuaR6|Jx+uSxpC|9=L!my{38*TIrlrNC2ekK zwW|gazlI1zA!`wV@Vm{Pf2Jxn@$pRtZxBi{(UuBXizoyFZF&NqTV0{oADLPM7P9>0 zH0p|u+RbCVK7jXh6O^Q60M%60CVd6>*;&9@z*)dqz*)dqV5T?*|I2*;J%slq{(c|H z65l_c@W15W|24^C9-sL5F2et>ABi(xLU>=!^LsVPvVQ+5g!d($e;(0n$#=u`4hW-tJy~&K;vNAvnLeXH3k*#miYXDU9h=_EKy6o z0?eZ@lFfO_U5oLF<#WH=?sic)9_=W~0Zw2sWl4dfO-owl^G$XQlhG#yGAoK5*RHP` zVmiAOi;Wk8p?}N2xICE5RH{{j^UIZTPuf+CZoo|8}p^)@C`)%c-@ z-B4^d?N;Lwk~Mf`!lAqMb#_P&;UIJ@)VS_kAez#Azz}2Ity}DTTxD7S$?BQ~RY2iy zo1<>K7K1{DLkRWxmdpnef*Z<%$-tA@y}=K646li_m=+VYD@x&ZHLM_c4DOS&fU|(J zfU|(JfV03=T3|QA|2qF)=I6_V_az_TJtRv${&SW5|KE}<>+ipv@V}J*5#jwi^oRVI zB0r7rzKlP-mE;HM{hJE@e^(6uZ`SxO-)7kD`n{H(@wd%r>M2cwJF{8mgPh@bXN)Io zrMSvW_gyI~M@C%$pfonZ<{m$dB+B=04vzKeJ*HM_g(^A`8i3B`9>0Wkb8sA9W}hXj z4!gbZ=vwAL7Uf@S1gB^1QAYDJjYwggte(qE!dKu$;o_$okRO)V90V6Z4=Gk112Ijw zie-#>^@1v4P|KpUV{=F}N4bffBjmaDDM1s{cDtdq-#13(HU}3s!(&8FM5sy2u-YQD zq~XRiVB5UGZ(#uygPu_FG&Z3_Zo$!J<96B5KqU5@I`u)uC^jw12!^)_#wfNAErTY& zut`*l&1Q-;Z8rF^P3$%#qeVHvX|vVVx7;KF6lHM{_cWyTw=6o?ZJ~pmR_!o;+m({x zVT2Qt91hW$&=9QK%4zd#j3;9&JPO-wE%d}YtZJbHN{ewMRYo~Pjdzav@J`~L{x{|D&%uM^&v z{DEI3S=Rf1y@LOLh2;C_`#r+@f)C(XG!geiGbq1(;tx)4Sx>A7Pc)ef6U}haL6>Ji zT=x8v@E{cmPDfA&4_AYTMs@kvAN>e04LhZXl~2JPdF3(m3J_*$bm(RI@e(kEdqYCA zMn{;uA)`7?5!lBR0PwPW>?8Tr8Vg|BaD}qw^QH#qUe+dBVG34EN(xXCxMRXn-UdGl zU&U{62ig`J^L*XCw(r2wqz>i5rErgPW zV1Sq72cuxM7VM_gh%vj)iG@qvd^yunZN%a$*;nD#K#%o{X0Vm-%EI3#s^+O^6TmKrx4zkKkqFh z{}jExOL$-M`QJ&h~XL&BNI*1$$ zM}wnR$nc9`he^CMv?td=1Wzrsh7(S)Awyfp@Y$eMR4CkR9)PEy0Sab5dr5QFO?`$7 z8Gf*$7`T^b|7MkaS}TFB`T}((RV~6CF>Rriv9Z{Bd!jcz$qz z6m8hWY%GnfZC_ijh0hidu1G_T1&bk%1(fIXFgYTn3Wa$jG)QLbN08yq69eO9Z~`og zg6jz0OG3c3L7rqTS?~jl853YmM@B^E;~ zX>=(2GpmeL6r0TuMJ{Cc#Jded>Cg#L99;Eu@D8n_7J@qq23}UdV$ufGI@OLVPa(Cd z#QJs7fhFw(kk8^iISV)oI14xnI179tEl`Q@|K~(%d>H={_+Qr7Ul87x`T4&k`7QJv zKSKClzJHeR{=M}2&yg(S3Co1{1!;8Z+fRwMEEqe;ZRGgqccbTbkp4dN^(q2u;H$*bL|K6$LBEmb$NV;ea+ehIk2AxH}p7!8G^IOb!^Tw9dUh5p|jSeCWQy&ysYt}Kl zsmQ-Oir~Yf41t?CK&z}GC~$^{*+!Ai+Q9|ay6uOejZ9>utBT|$cAcO>nGQgS@1#KA zQ(tpWm=|(FAwiij1bfI4bDx|AoCTZ(oCQ8*El`c{zux~}=G*rO@4t@z%0DAn)&snV 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

PnP5E^CoFvIFm9<*>B-&(TTc3NvV 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

rZ}CB?plwB80K{^8a_Jxz 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

1-?ovp->W!N!I*>zf1N1^!I%S$=csg&ea24 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≥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

>Qzku++<_G*djkO-Zh~fcyK7R+T67VOk==r~n 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%0DB#uV4Rk!uRi{ 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

qR68W7ozM5;w8 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�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

}kQa1saI;Yqg-rJcK9 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

      s(=`q+$@#U=B}m_+t`T5m>*w}TEe1R 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%0Dy5iG<#|Yos?|&DKEnfEs z?^}NVf1|;zCXyu|A6ZKEg#@f8r%5B zHf)4n>6(o{{3eZU{Ngt0|C!IP6*U<=)Dv{}&-9iWXwk2thW zP(*7@^z!2=dL$r3GDc0+|GjpAy4vCK%7mIYeR}3|*RZE+kizZ{gSBxygzq42kOZv$ zt5_)s@dt5vYUmlYgA?yKz_Sk}XlNh3DPFufQ3E_AcvLHCAZhL3pzk@^#re-7h#p;? zn(2)w?{Q5atagA$jp|R3&{5ySAGTig2;8LO&L-Jonb7W<%XJU@#1A?UaIJi2}W0|YG==E2$!rATV)c?GJ+ zy|3WRVSB}#IpUeVt_dyIyw2eO{-(28G)H2X=Pqw$4ZE`Dg_jNLx3b}YUAY~RI>I9l zrCS;J75(`bvcL~b@IU@457Yxk=`bY;~Hu!=%!AQrl8pyME7GzP1vo zz03nN))PqC$0gwID=TKs`gOIu?7xW0qwvwspbBgHd}l;|25p2n(uhBa zge-GUMt>p;L>7oF5LqCyKxBc)0*hGShbQ>|^C#c_4TSG)zWa}8Y~umnNO<4Y_kS_V z_diNw`~79Y_phg)VEO(pr}6g?zW*s2Kb`Qs)ermy8b3gk9X(k>X3a+ZM#eO$bdO-jDU0K&LJ42kMZdY|f=ymD{k}EraF0t}e zRaIT{WXQFf10(gx_tOI0mblZ?Hi?Lwc<)zLF>GiM7#ZJvXX9(OPq^NvmWuu(P=!;>IUP6lF&aoSVa|Qf}Q9{{D`H7HC4wxOQJgJ`3~J{k@M1UyQWX|_*e=l z{7|pyb~l=IqP^*f@03W*zcTTRxu=Z1B&IBCs?Ck`6hvB(Ddp#+=J)`$LFy{x3f=!T&D*-{RZ%68^uSkL?ovx3B*l z!uyv0e?eoL@6Qtcw|M$r(b&cZ?k4U8 z!v8-^LHMGrzW~2EFNZ(Vu&* zJUVd*;p#&HZ92L9a{_LFbfdOarO55`{Z%+o5Wr&~3TbP3iX{!`YvWAl4Ax5Mp6BSH zsc(Lq`UTqs@k8`DJuB=P$=k(;v z<`G<}_PXXyHIwT&k9hw39wkUDcMVrGA%(=+>zY7AI|vR#d--W>hfo-sppom6uKV`7 zrZB-wFcb&tcQS8EWmGz(kXU;|LsBr;32vIu({b6BU;L;v5e9KxZfJmU+wYt@yIS$w z<3`dn2jR$M+_2B5_f9H)9c^;)N=yXt?G4TSv+0V3sx}aV9tO+Fk6yL84Vep?flCpU zowFN}Wbr!O&_GSIGQ%jD^HU1p<*>^dOn#i>p=hXmLv?B&cZQ)=CG$Vp%c6oSOAo5a z^7J$ubYr`<8$mD}plr*DX3jsykn?*+9;SUmdwz$>Co8sb0*{l05ljb6@qQ_5Vy$iO z=*U9{7W}=mkApqSt{JH5igL;AvL@VtYo=>@1Rr_(%SGNWBX-u9yHGl72;)RwK0Yn* zq6z+Y^ZypFe~9q^tH=aDMEL&!8h;hxeVadj3yohxum5j^_btBuPc*i8{@V!eTYkVl zV0iy+G`^tEs}tV0^ZPv-TRi_P!uyZV`#+2Dz0Jq}7>(`c#R%_PeE$v_+xhJf-hY%n z?~@7d+wcD&8e98hDBo|t|6kGgP5A!$P0ig{KSr>tb1LKo=0D$2mdm!hNw!L1*!rd> z3uN@ieJ6aOhF++%PsUS7re|D~m@o<0TuLk;tZ!;67|_b<_R6}*vg6)V3P`SReN#hU zsH2G$+Q=?Ju5h^@29#mKp?*<)QxoE>BgDD3X?lV=cP3srM*qpRmWjsQgg(yhSb;1SOX+qRLmQI2@4)}lEP-TR1HLz;t2Jc>L5Ko+3z|aZGnT7=U&XABw@AsmZlL( z-S35>A^oH0iB)4pahq>x^8NLW*E{Msk+%6aIh=SNE4Wl73_mwj)pIal&qIE#f_vRP zI{mXtB@>_#s2NO7R(ozX+gA@x2!WVX>NK=8k6OIeRh4R(DRTUiIcy;zh_hS!phH9- zP^Ts?#%&F-9G^uszq^m%#&T8IY)cysqPV5EHQKoK;5i*g3_tcL$&4E8dl>>`4_TCV zs@FA9!MbG?%B7ckrxH zn4pS!s;Hz*8ebTe9ZT z&nEnD$Dc-c-{iZ^pI6h^;{6*e|Nk2_w($Xr{~x~m_G_QP^8Y_dWBdNQDF1Kb2NhMZ zO9kci-4LLy_PoHoXP_04c(Kl@QqzzCDiGy8@%n?MgNO)gv)GZzx=2C9ib@2lgi7Er zOU{q`Gfr&)s?|mARApO}T5CfxymuTp2tb2VLs}AxS%S*8CT>y*g4=#SoSVBq?I)gT zGJ|63R5H)jBx*o2NlL5=G=R#sCZ1Lax`)78CY!~^k9ln{WRxjcq>uy9n=F zKL6(vzPI)J_tV(&|1I9Pc>UK2?^}NUkn;VOfB&h3?`=Hcg*1K}&9F##-~Rmf(AdT& z?j`>JgY^FYMq~T)e}MS^RzD!i`2N4d>i@q1Ho~uT&Cc%wG`98s&nN!BozIhr?{9wo zo=SRs&(z@_1i=wn$E@A8HXfROQQX;9ivvIjz~NYIo)I1Nf^X z1tS3^;g-E^O?&D+sM#D1gENP+tik_Ig){Qh;`ACC#_ArF3YTmE$thQ0OyHkF39EYz z4U*b30&m^XiAx1twrbevzJ#h_iF&oy(BS>?oY!uFKr!qD&NH7sBIRbO!JA1+ERVg0 zrWj#7$8j~nT`QrZIAV&3r$``huc-+??s)@;8mb2Sn9bGAZN$^0=+0hCw?c=WyE=6+ zpDSnpmx{$kdpnxQ*Q1jWKf(2Jy+i^>cq$H3S1z8(57t3T) zV#sH2M-%d?21i~GjZ69bmG-^*@J+p`ME2j?Q9XR=sL#u~H1`xVh0sO6ADo34Q(u+fXl=|WK)I)=F=a70bERlB zYZ0-rcrF1o*H|K(OC~s13dd3+4&r1cdC7~EF422bU6c!W^a!GL!I^W8Qf&+xH#-ZP zin2uaR5fh5d;DRj_@w^v^DGkr&?2Mn9u68^XI zdkW!y`}_R_(*yWg!v7ce{@tP`iB}x;I=%A{rM&s~6+p+;^@=RGSdy}<>OgNNaoIt8 zZ5@EvxsLR%lY!~6L_Cp7#ZviLHo-aP@Jo@4&Sz6e2zVz`VwLCax(1c3BT|A2#okeP z?|1vFP8=?(q1?S$!aq$FpMwG6oMSU|=yz43Te~Py>NqBze{QfWUknMk6XEWLW~pvJ z8=2gRd8jT?Gd2F4&G9d}OS?BT^<6j6C4DdqE!9^$%qWp%wJ)>0k=?Q;g}dA7BT(ly z8Bls7EbL{x5$PJ;t!V66L16);7(%kl^FL=4cJdk$)DB5;8f-6x7lMZw7L?OWj&mJw zSc>lO?oEv=x7+d0P&DB198|MokJgl3Ng=~sRUupTymuJtAk9BL9DMHd;_{Q#?F;go1XAo_?t9gFda}U7<&KMqxF-#UIPPnVmlHT?E zPzYYik_<&)5sGMRS49UhG@vkAmF6*X$zrob#M7^#(Mv-(0}X(d54k{{h9ijBb@8H8 z1^%TAL>m);yvtRe(eOH@=r1|N(U-^qkp({CE%0L#{O|JrEndHy@W0jL{{tFZ{Qu1? z9`Lz@|1DqOAsQQgzWMWYg#Yim9A2~a|F&M>n;HK9EW-N_(EIPBvHkoc;eC_O->M}v z9;gv3TdN_%;Xt7UynryIA-Q{7HBD$9lR*W*ZMSuZ5^8WL1gIf#0Jc=xRpYS1+G;YH z9B&|ZC|gmJbFHCReQg)gN*wks@~p33xCT^88LcgqeASlMUo-zNL+X{!bAHDP&b{mQ ziB#Jy6-njtS!0fUZzYWZ0MRwZ)DSp)!=?>B}uo` z^*q$_&^#}mP9^dgHd}*7k|+sDq%-JNIFyhQ}pSR#S^Yl>?r7`^s5xC_aY$P1vmKl&0`AhJMYfye@p1tJS9Z-JLg@c$DY`!K@y zHlO~zG`9KtFJO58l{9{sKH&!8eVgC^H5%J|y-)c6L3;mR(%8QKJ%s-)zW*Y^`!A#S zzlFy3`)xk}o6mnA#RF`7p-=gL`}_PAjW6i)UP$?W^Yga~8s_$vcjTSyyRy>ryTC~C zGUw97=LHtcRzc+f`)5n($Ac(!)$N6IE=pZ*6*T!F;IgALIF?S-MeF!NERZL$AVeyq zUbc$*;1I;a4p$({29V2i?o7x)iqUTsl`cB$xolGylN7oFa-eA;hBS(rJa5VCq5i@J z5Sri>0vddNW10JK7+ch2dJ)O+Pr@P@`ZxjD87!88=Jld>Pe{sycNDz?4*vys| z&z_Qox`8c&CZS<%(H59y2p=~lPIFz;N@Z(=rk0K_jb>ltl3_c>@L$ApaYG})yoI`| z12>AQwqRMY1(ldzzapWfO~g-?C74O~8hj#h1) zDvatMF?zb8I(ER)3Hrh4$XSK+pNiu)wCwSU&5_7wjJ`w`h%69U;A7naKR&_#AidL{ z3w#A+zh?1wg7Cl1_rHtA7LOmWc)(xK*y8c$5&nNOeSVzb{ddsV;`uh=|98;)Ka=pj z!SmIE=61L_X8O7JtKJ1**a)0<>58qYDh8@vANoo~w|T1;34;U1l71k88Rl9jLaLTD zVU8-wan?$hsgG`iM*;U%)Yb%YV{4<;Ldg|*M$XV@l z&%>CL8a)DD9X6}eY;{8uPpJCdm~`s6RBAwMYL=7fwCSmn&7yKS&thF@{TDM0c`~`2 z1W2kI8bDI@I|oprJY0e>i-;WeRxwL}l<SsQlUg-Q5*h3EK7|T=K?;Dz`>hXTx zxP#s9I{*6ij&T3;=rIyQ|IRdeeC8P5GtK^DSR(msI-N`B#rmM?h9<&jeucr>MsEms zb>JKZ^J4=7oF5Lw`(*a8<5{O{KP{~XQxorL#o zetw7Wz0L3cK8;^N@Be3n_b+Jt`GoIn|G>A=_E8IXs{gbmsI!g$z#>?WJ$Gap zMXXnBY7lb~@@}C5{)^0#+z6+c$Vw>KFSaxgv~}$7dtuf0`p_P4E;6fcN3o?6)bfTQTS@)wp^M1&6O^<> zE_bn|DciC8iSKvK!{-Jx3n2Uv@2Ix=sJ{|fHw2it`4ZRT_$OhGsyb+I=zF8E5VQIz zBd^R!IM9`qf+58n4LhSaGWBgC8m)?BJr4Q^k1jzTPm0tRRZ@e+5rW@*4XRBDE&)Fz zQA{GQM$Lf(^`XNcaCugmjpD>UQI9VL=8HS3lV-GG`4uZNcjJ!==~q0vBmSxC;a~iz5Z0f|Mv6WKx6xP zw+R3L4BlT=vG0(N>kUA(qED~_FtU(u5-++tZv6FWX`BVUw!Ow@lpw-u~WHhGL{0NLE7RfiNQ;H z&^T_$&nWHml?0)(hQ(Y3hxr&?7Qqtg`@W-@r=2P)pjf;snHMR|)k;dUXd#>zxRFim z3@gGax4qFeerjyWZPm0n8ZpR|2WF`TRy-`Xl&yNIm-9jpZ{(eTYkbB<^LbRUG42|g5rxVB zt5GG&#StTz_AiZumqbFY6*SH|CW*Sp+pE%7=czS=e+56dR?tZN*Sx_&;1IbNFlE>b z*&yhxjalU@0OD+(COsr&U}^+M2D6uq7e`>`qKv&yKsbi4R@Vb*hHkc@T8L*>M6` z^9Nk90@*Qc6gH$_V6CVT^r?;d{n5!j_#9|5#!n&j!UP|WZ6An6idBuZqUypK-R|`E zM~59}n(EAoX~W1i5HwZ94hA)qXo-2`-u}KjP0a&G;S#80=}at*u&+t&OuKF7>Bqp| z1oaI1tR@&A8X>F|?^XmcYv{=9t%T776_vcSih1s<5-e>AP9 zKkvp@K=w)f|32Y=i?9DHjV(X_d4&Hh-hMLSef#?TH2x9#{C`OJ-|_?AN@I)vZxa5u z@rU=(*!J)Hr-c9Q=YN>S7TYY7@}G&Ro3#_1q9;ZDl@*D9*8nX?C8g4h6RL)Fo|geJlcDPQX{BeNdj z=t=NnLq#jz0Ik?rhAP{+UWl0Y+felbucM!wQx~E^mu4PU9HgumF51{pEjV;p?;Sb} zT@A*72nEaP8@`DIgEn?Gp`wjDCVg?A1iDpuDG@a@NRg6VVDs80%xD&Py+5^ z-l1;qhN_SHMmKDV^Y4q0T7G~aiB7a}whafWB1CwzzHatZBMf?0CLdf zZte05Kam%Bz`WAK#3?0;{f&|)dUYcRhJyoy(D^Ji&zP@2Q+OtA5^_kQFOdZz3q%%( zED%}X6U+h+&cOdKC0pEP`TtKLy#EGz{S`ERGmUo%@83t`KV;)?CcJOs1&=3uZ{Pm_ zjo(7wzfJhw*6aTcjct734&nU^djH?0e7~7ryRFgKZlh`O*|;ZQJ?OYycNcJ$n8$92 z&5|?HZfnw|ZFDgX&Q{jWj-fI{fsG#(>a@4p8lTPt{MXv&DA-?t3}f=TA&8>LBFX93 zV2H-^G0?9Q8Ht74-qVop+sBx*tAC~q6F|&5ZThn16X|R&&NcgzfF$u0s?yV$Tylo? zS$j`IATITT^TQSBUZd+Bi@})XE5YIRo(6EXO#^e!2@t7w7=#?y7DEuTPE&9*y`VOXFV2UObcV&t*j-$J4nj;e#Rn%G_{IEpW)#yUX z^+7n6vd9BpiulBmV#I`enCMGnfye@p1tJSX7Whb7;GqfrckBOcK7Nbvzvb`$28}Hr zzfbu80h;J%5Z-?yjbB4!`+Ax1|10VB_tV(&1D-|r-@gCT3GdsV|AREXpzr_kseFH3 zRY70(hkdtupC)ApKbg7Cvr5$KWlhSk?j89K|6MaVBxV@)Fcd#2{!lM#7}0fvN!H5V zS=XiVYB4g1yv(r!`&5KT^|B`XP)CU>bj%&^Q;k28iLsE>wEGFVv6$JcS2Rd-Y|M&( zh<56ZE3cj@v?h|-vD|(x%gB9TPD0%dC@Cen_Vvn51rxFEd$(7k9vIprN~ELKE1Iz0 zIGDFq@q7LAwR*?z-&OOw`@snH>Kr%CpJ;@<9b2?WG#cJdDDJFRG^noL_l}`kzxd=# zSm`QM5_8G*n>o$%?i?I=hX_478%n?FdD}8WITz2So0`~Nz2kw#&CRDdIWIZe)0^EK z>(ax$sezjH&Or!OK#hjMhGLHxfL*L2so&Hv2I`%YQ}1Lc1A+(7;|Yj_Ng-vr$fGZj z1tJSX7KkhmSs=2&--rbsp5Xt-Pk!D9@Lz!J*K9uiI~e|dBH{hl(09Cn#x`D1BD`<; z`oBzL%h$h$@V?F8{|Sw)zTmeI{(p!*|H*{+?R;KAWBc>+g#T@P;GI+P0P_($#0Rka zf%nt+0@z zqRF;uny3K`IObQZ!h#TlLQx$$%Uwk}aD#KH>}94!aM)X08Z^;DO^90+qC*orT?sT{ z>Kj6_Vrxqy#ML_Qg)l4Tf7-yYJb@08FxXU>o2H_+74$kM`=cewX<7UN3vq_oG!Umb z^m->j-w6Pyw=zf)oI7(Fb`$KUDfVgkz1}%=2l#H$tUYLGvfXSNtV@aA)|MtfiTOc1 zHB@jwYexvc8J+PfM`B{uJT>LWEw9%zo$9$A^)U<1eMii~R8faN>uuFOHr3~l`{Z++ zeNfv+Sat-z)nWbl_e&Z8S_b|AFtu%i^t5ih6d9L(C~HC<(AX!k_6wy z*d^i#y{$QFTEU68f~L9S_|voj!6FgkWvy+ETLUiPib7J{h@cTlr6I;Mi~d9wh%69U zAhN*UmIWS};Q!B=Oks`izQyNnpz$O0j%~vG7N5VL#;>KOK^lJv;rk03zmdid z(6~x?-_`^C7L9Fv!FLkgw|W6jB7AS-1rO5L#sdcIhiGiS z|JzCb&wl^kgN^VjT{H2E)(s7GY(gGxcszEH2i~~@Hs<&3Pz=hU5VDQZ)!Hg+sMv6y z`pDvzK_m5hOV`E2t7CW)KC(#2Zk07@@|J1AwBI@MJ;&M8;*F#$(vZ5;90>R2%PL=f zbadn+fg1wM3!?$nM7QJh)=J)KXXtg;T0Zm`he7|blxitB^q>0lrxr>r__S4T*cpz@ zKRgYs(s>1eA#_Md=ax!pzSW1CSog?9oAa+yur^{S&tQo^W7ly!M#4#DRd@@tT!A+Y zWW;<`Q#T+6xm27JIQ(Fptb+0k&I#L0XsZ_&VM#^P7w+PM5kY9ch*sIu9)sHK%3T zTy#xS5xy)JxPf>pJ5ydI?;Ta-@XYrQ!Fcix2W#Uf*Rr!U^)+rBQEaW)x~aO?!O2=m zxCOBqHaVP=32{B%)D&7G{Eu7u&{fZ!f4gL^v(Vh^URyEFBb2L2m`(eC6^?F3# zCuT&m9&t;Cdqh=Lq!@%OSIc>R3xZ~QH8`AtLbl}olA9lWi7XIV;IFa3ODFi>)&H}2 z+#~#N@%o?B_+k3&?|}!vFU3f0xD%Y&&&!+sp;Rlpk z8hU%V?|V?YgXEpxcUZd`fWZM|3hX}#V3c?AiVEJE*FlMkkU$c<=|BN?ly@{#*>W)I?xXO1X^%d2J%_$V&^3(bGY}haRQ-+G z6@&($#g@v<&mmBN2{bOKhz!LdU_UWKnOHg7NQXsEPibs&Pc0{e0l4}OA(;>$Z4 zd4blkkNw|2?6_Sp=05?DU&E5Tasr@kM2d2icU7wtPdU8BiS7{KZ2ei%EahF@LGKL) zMtn7d<)IerNXEy^lWAMVallG-1?9HtH0=Q$Lj$EhI^~N}KT$VmESB__+nW3!&ipRe zQsb+WPgAodO{2{mi!vFU3{_9jdKrx{a9xDce0X)ReeB%Na3K#V<^i|2@E~YgTZFEjgyMAcG ze*R0vr3lU<0~ZSkh2OB{j|^{qB~5SP#a{Ii;ed&EU$LMm_$Yc^u$FsnbYKC9$^rtW z)L4iC6bqWvW6=YOK5_V#>h+ko?$pe}!I5|_#exO_!j3%;Wf3lt)-1;mgerEjFBUY8 zb`e62sNrxT5%bS36RqK{a~;w~c8_&C5ve?;-PDQI%^ z#dFlUuVOEQmh9-(BiSs~l^2Vu&5SObhx=hx)Py0x1_HR72BnBaib9daqK2Hckg;_gZn(ciGp{m_#6qU4$kO zDsONNjK+fwqk5|67`k<4m{N6ALe9zWhnY5X#J{gm*&{eGMOw?F^;3ID&G-v2a~|NmJU zTReXc;eE?r_ydOjzlrd^dA*U=ctq*7)5ttJfe}-csPZ=cjmb){Q2#N^d#t|(_T01XGq7P@T!s4xDDgn z#flsUe$$yygfz*5hP>PG?!C9`55gRW@%%whk(CFwnD9XS5(!M36a5fGFxV()dI;?F zK}m77#TJN|u;pm7R#M2MQPAv|hSB{z>V#(YO(IKYOjFgLN#^tEWG0?WjHw-0EDLT0 zh!gn~-Vu*y#Wh>dRIxU2D)k0KR4==g)p`#N5SyJ&XgVSCYZ|K9K*KwSe(B+Oae@ZG z0~l)O97>yPt|s3qu8X23xsE^!m`V<&)h=B(Rfwf4MyeV`O~p&YKLqk#qT1y$DmA@8 zQF|-O!8S^o`?AqFI5rP^>4%)W4i$%t6KIKD2XhK9NGEDZ6U4BS4XrKFM1&CjVfY4j zlc+t?D5*{=!J>-!K^kWj_5o08c?Adod z|MMolQJwI<#nXR8V~fwfi}1dU4}1~fdz(ME{r)UI{~E&kHh=$amjC~H!uvLU@Mko( z{D5yG{BQI1UqE=@j(?KIw%@=%BD`<=4ZM@a_VZeV_wD@ukjD1=?-2gC@q*8Wjqod8 zdl^~Ca3;*y_A5-Gb)p&D&-<4&emnlHyr+>_z5&s=+eXY~ZCvQj??%0&eo23vcHT_W zI>{d@tGbUD`bXzo$3Iuk5meVqGQ%7qlRYu)cd10Qyr*%BHvJxI9#%nsg+19!VNcO@ zE2}!CZ+h@GTpX+hJc!HigyRfdsq&sCv9o#J^FySf=XcsJ`^rx*NJHF|7o;XGvk8nY zKwO1~cc<5?WYD@@d%|e6b`C`JMp}|T{qr28TI1Vo5UisOr-o|cFz|g%U z-@H=LK!=LAzoNbk0E=N#4pQwxMHP0dcqgYzoi>O9J3-*Mw3RC=j!nhuAE1S(lY&74xr&PW zQwjDx_u;m@!HL)FJQnaHrQTMd31d$w^_qH3zVvYQiQA&6A@D)g(S)4$`<~-{scnep zC_Ac6bX0P?Dn->g3{FtVIXJ$nd4AaQooi1$*YKl8Vx(1y8s7m4I|O`iDu&k}O|}v} z@T*Td3C$gLr68gw#=|QmO^mq`oSx!hMkESk;-v_YA&tFe1fwb?OX{QG9Y{}$g@ z3IALC{r}R~;`e6*3>!RrK|lDj2=CkX-%n$Ur@w~qzJ33DXl&~RJi`C>^ZzrAZ9L)m zg#WGn;8zgdw|xIcX>9ZTHwo|m49)Mq(b&%K2MPbbgMp->vjLYKOJ_$>CGCL0(XIV5VJH4);BaDYTfU_k6FRv z=6pgx6fwK8Ue=JWTfQf?q*!2CvfCM$*(hv;KWGtSG9In$K=c@wA<-+ zy(8zj&yTR+i?KkW@fan1uzpjsb=EuHm_f00?vm{qGedFL+|<-9talD>hxD~vwmFLP z+|e9GHmRmCV7=3K)4=*`hr6=o+L2

      $g-B^!_P|ejWp+bc1UyoJ$pg>3x$#OBBhw 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%0ALb-5 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 z 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

      oxm8JpOC2yv(NupAoX9n_%N&E*5{W$5>fY(- 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

      rQwf14O|ITqk`H3-D>x2= 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 z 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%0DWm)5L1a?U?ZF%^H)~4 zmOLr>l|e6>r)vIQLw5HXh=U)BP9;wQIusa;*1}vSjiZNUh*MCgO+jHLGoQ+2v$A$B z1sCB{@IdfD@IdfD@Idf@+5?|I!vAjnzvch`JHr3A9{;I?_ig?DZM3%f`vt=LHb3wX zt!+Pljqv_E$=W}qwdE7sNBH0753K&bt^dD;@c(zw&)-S-->!d%);2%zC1d^m=0|>- z)+XPu*z~32FAhwscHQagJXPSEjVicf;iL)6MUcJN_64(xgMEZ*JTBMdClKVaN;8O` zVqI);$G0xFYv}hViQV1n&Q!Z7F0)Ka>B=!T*WZg=Tgw(fG@dVW^vaSwJvt9U+VNl z+B^I?vugg=ENzbLCN4&G6<-;f0Ekj2zoM9!C<3jehA+Q-2{@}avu#SVhS4I?3sfAS zxlAfkET*#sW-7pcwlI%cd`{fUOWr-vp#GR?1|w&YoQIlvV+MGPoigb($Vy^5XQ|

      b#GpN}8l<~&$$P5n(&0Yxqqs4T9Wg`opiy*r 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%0AO%OTv`5RdscYMHvQg(zTMAX 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 g|t~oUcrBrblH7$$;>N6y}aCx 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

      @B0+eJ~n($3w5* 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ΜE3=(|Ng(GG3)Pr1>t>; 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 z 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 zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PJ_p?a%=U0001hp#QJi5$FUB7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM f7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@1M7hR6*_&% 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 - } - ] -}

    f?t13;#Z6QLJx`a6Bkup@l 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 l=KaNwNBq{Y&i?xTK8 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¥^6IV*2WN1J z$Td{^4=J0czW zZ`J>6LH-x^`QHHxd;hZ`|8L3PkoSfC{tDo);0_y*|1SeR2J*g`|1w~4eFF0S>oESy zz@ono`TxDtUrejI@fOKIY;odMN(WB|W9tdeA=7>_t!j5I_RgR~y=;P0iYOrILz0x( z@@j8-Ev8iu^+hVTw9=bPuiUWIEtHmAB9c=T*c%IrY1LDGvA3~oapTM{b(goL5r}a4 z)RYKExo>1S-tQ;xa(hv;m{v_uQ0$RI>2PUg7)imctSP;g%t-o`jbC3et(x3!?7C3z zle7NLTz8HAL3S2=1WSOsk4g#ojWd2$|Csht~3y?g$Rh z`%CT(le#Gusq8%-ifL6(^f96G4yGWRk~@x^uaSIe15R|RCV(jRW+|oI!{l&Cu@`p`_wrY1GOBd8;u8Tp?HXtibC`p06s<)U{)k+t8XU@(k=QfuHN%~RB z{jr(kgVuUHF6kxW@%d4h3E}5BEDJ|)Y;OF&q%FW*2 z5}UCdl`2zeDasZiTSdvo-fu4&hn3w+>LV*JUDr*W7LB=%I%!DkmQGVOg1kvdSNiLV z+k3ZIIFvnJW?){MVju~dmi?SucI?%9;ijr?VPQaNBxfr1Tx!N>ElaXHts4jRsCU-! zIN))>ldXo+IJgUciZzRnO;CO>li>V2Mm{ z?L1GmUzTbn*%>79k;;k!d&x0UQGGwn!EmrPSlsshzzeEKsqDH!q&j4%k5sCPAvDRszJ0ynVBdg5 zUCVmvuJm^ghHHI`xSO07cPWBKF3-q0-5lIlB6ZbRgeUog(MS0a`2ZaRB%n8b#GZwq<^v3T}JAv-Zq8)aF<0ziUq?xk&dG!AwOM?&@|wp1j{_bDJP!Q7!2x|s{qh$lqy4)%XA1F9!U63wipQMWcSYldL<(6^T!&4B7Dax-Wk z!IAj=-6Kl@JaB&=mXopngW{9WJ6>Bm87s3vi?qve$eRU#GRqZlfN!5WhvxeK8 z3gen1Q>sD7TJB~*HN%Rz+$GhZ{9?L}4Ink3#7yS`tY$z}tmRyd!_n^DGMNf>V&xA| zj6`0i^`ol$r}eXLRjhA%5Rwz&zI|4&9G(86?R-E%Qd-LqA(SGB7;L+5s(OskXL7GK zb*y4&An|VU)g*O+Bb{wU&868rFi{ml_~wwy&e~u?l_}!xic_qlPmt^z$c0ty6>Mfu zHNy+Ba&5FR(>c_gJta7<;4;NZ@^rF);z89IOIpsoVRvPYlSNyUzzXjtnIi=DUJDhW~v3xDY z`ylTN{BcSCZ$jRGKd!$yU8GAB!?2Z}UzqVNVuvhsN`+Zzn`SdE=o$=FGCjbv*G6%BHb5E{zjYj0z; zy3fi*mj*Bj$dDhjW8y8dp)AI9NBg=~4{6s2ZxW`ZXH6#thuC3LIpv}`8g9&TaB!;y z7^k(EI)ssG%|TzG>4A?d@}TSIO}2K~ za6Aq*u-$&tB?Ag^u&x}p`wy*eiIMh}PP5Tb6dLx3n?;YhI6=hDY&`}`L9ipNKP3J8$eSv!I9b9wNARVnN+$CI+@|v zs%AJc$pvS)VsUSAm+dBIiHo7kst#!(Oyz{7thbuUNH-dPQVqyX8FBiYIvhik z6PD6fiIi3|sdRY~30e{W$0D1lqwMzlrfPC#{? zWh-EVy@Q6oX(-!84`ao1_u&a~PK79?eGA57k*Gfwl}IM>h)NO!sJucn5Qu~$P8?P> zmnOTbls;S5F{mApNo1EkNt{00R$J3FR4Y7FdVn4|Z&-~f<=(F0tf~*?^t3T0FdqwZ ziaObdM%lK=i-S5M_J)#fX|lw5BH z(?pVX#39VRX{bhj6e-K%#>Qd7$or%ao8kZ8lvHBYupbV{w-=k6hH9>jCcUPk;dU^B zu=%-&$EQ4?l5j-H^c-Z4rqNQA>*+*GLdW_I^WdRJYtcJ6rS@+cs=AS8e{o|lob46k zO6(xE$($sGiM`m-G*mSt&F+BqGv(>fh*ync@Z9tS)Q zcpUIJ;BjCE2bx>*|IypMkngX;Z!QLY7jPBw{-waz0bdUMe8~F(KNRx5kk_vU7WoBF zfxLe;u0ICyz0eO_0xa?oL?`5ZzT^wQB3|GLu=fjn#UFr0|1)9l7xw*o!`{#S19|0q zf(6bexVmbMCUoa7MsDDNSe%lWM?!Mo_@i1C&bO%4Tysj!iZkjGs!wED*Psee=4iqi}&D^k-x{P?OS0aV+T;So*O)66bYQ znU|{D_4irS2`-ProcuaW7Q>)SC~4;@<9$35b0Sw&tkfxu1j#}(rF2!xo7MEjj)pe& zgS>hkM~Zc4)4RoB#Qu+NQs&Jl#zzV!dl5LVp3ae}nQe|yV(K^!Xj1<{`-4M{{=9l( zM@pYZ2~Vg%XT7_xZ!L`C+HZgYa3Z9ti}}M5N%$m<2r2kT#T1K0>HT(ac*yIjB7LI2 zXOG1v)_rMFdMjvQP4d|v7`t)XzP+kay}sOAv4--y^BS>e9UO}w2d!8V;DJIx|*xt5ScFigrwd zX^5eTd0Fy(iDb%AJ zA{OPmdxx;l4Pd0Q7bS&-t&?ij^35mZ_wpPSl%$+3YunmTJoIvM>Y)dz7KgM0k(Z69 z2!nLs{qQ*8ap0!nfVn0A-*Ico-_pNGgx~ac=U+Y#^1qPB?+bZf$kT5H7V>rq@;}Sd z+C?dvtW#F43r2*}SA8x+sp2fhVRzn%@&PVJ#$o$Ud#9{i z6s)_4QiScX7~ot`NPZVAvQHk>DRrT}RNN`6<`l22byp`M3}C@@9Zzfhn3EaPiAGho ziw+gEnE6twX+_A%PhuwtK2Ef%I$4llG2^hQC<=3)1nIduq~7Y3RaIog18bJ!rW!v< z%Vd2&9SpCXvZ_LiXxdM1sg^UROFa_>!pIt?aa5>{xZ5eKs={b9+DC_AnMf6}Twd#( z2hbs;qf=H5Odmhs`rtr!)?4agQ{ozhl0@Vjuhl6lJE~AxMHbI3`=-jqBuPZ%UKO@? zsOcytDm8`&tO4}Ot4Q9K$W_2;TT+doFL&3MXKtZ4qIM0Hv$2)bJ7ra^QLei>Ba5zE z7b?;wNUtWHJGknF-BPcpYCI}Slr>>n$i)ZKt!Enf$V*R~$~-!lKX7jJes~=4IN))> z#k1nsnr|`PjEQs^{f#AvMaHzqCHEBr0}$E*VEXPmxNodrqXP z9+^v&@Nj7^HyByHeapQwx=Y(f7NM7KPV43A93mY}{C-M0<-k$ZgXq}Z*Q#-Fn`KNo z)RU9E!&$l2QO)Z=j(cY}jQv&#*`?Sy&ORFK9V(eAQ*>=;Zl&<_1?-vnhoJ5zqZuxTJ1&o@)U)X{?4MP8wYCJvQpI` zoL^fSt#4SpEnJxi$5G;wPunp=NIRgcS?XF`LEI2WN!l!1I@vJo#iDjdRY%vRm>v0} z<91Ec7e?C3sno3f{aQE z_&iK^7Uci;0zU%szL4*)0T%HCPl3Gu8jQaUi(n#QOR~LMjLc+H~T(2pt`x{;1FI3&ka2+aIDcZ!jK@2LmyC ze?8Mw_1A;YJ`gk!WlooGFIt$Usw>Ljxa=-O=B8w^s(Xsro%Ig8SYsrW zOUj}cVH=6uG*vxQ%-(_SXn${yW$#k)(Ux4GDW|rBY}u-+d)>@SHFH(D<|`S}rA6hOGtpF4y>c!xQeaseKiq1vxl)Go z6(CbGfz@q~iWq)JUS1Ae8um+H64$2@lld`XU$PNSR2=$x3TDvTrtr;kYAV==|K zt42;9lv3n|KR~&(oQPC*Js(WQhC(By;v!F8$k8}?C&Z#b&dophf^y!+SeSA%M1!1P z(dL+6sj2$b&}74b<@vh{YPOUevlo{uHC4GT(_ddEjgI_wx?Mq(k4}2@9JFIEC{=2z zPAZlCy|wkZ)hvV>1>Ra5Ra}-1A!_6p4pREs3!jyms?$$tFg(K=+^ps&Pf;7v3mWq| zFj7^FPY#A_`zfAGUPCU^$dm7!q`!&MhHAggac1y-cpUIJ;Bmm?fX4xk12-K99=j#~ z-*s!!D&%|N-+vvj@V^)S{=y!A4CH%}pYJ?iasA1V@866&dp})9fBL1JRe+2P>NZ!hKa1F4~FYKkz2<{j3 z9zm`WllWB<-g*0R{~@}jWyBOSQtPYzjoFciN_AajJ2V;g9E|5J<=jT;jS1&uNU1JN zqh!yO&w=cIU@t_sl(QNohTSt~M4Bsb(HfV))p6~GsFtDXCZTO?^sO19T=0>Ee4nI! zB0f6#&?_fjO7u1;SJ@mTGo+Yf`Q-0j)RUDvlvK?j8(7Owb%-!15hrD@n;FNeYHF6X zQ5-#E@5s|KRQ)3KjqdK<1FH$wtxkfTw!~J_>ha3A(dx7eRSju%rPp2Wu5HX^$=ZBl zrPQ!x?Gt0!zH3Xes>-z38*FSBXUEp$P7i4<=0fHAoT{?5l&iVu-9B+Nx!fJD^ej3l zw=w7Bsw1gS;yb9$4+m3W3E1$S=rXL3QgAQk_yeC z)Ktq*)j}Io)K+Griur-coz6&R&B-ThSCOjvnHJ-drVWh&w$x(>%#z|gU4o_S; zp0i7Jp=Tu6bi+q3zbW&PEI9UOIuhajSGUJ)$^Rs@qJ4>evV8k?;Qf-l|2DAqpNIZ8 z01Nq8)c?B}{hz1Fcs}9JzXJLHO7tHM`Cp8GBe3uf5c&Uv{r^kQ4~YBihWvjS<~s`V zKg;iCO7*mxUh7+=9QQ7j!C;(BtG-Bt{!1yYr%kVvUpVfMgyNAvG-7W-GE+H4wE

kjA?-{&Uy`dVlE}jenoU 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