anoma / namada

Rust implementation of Namada, a Proof-of-Stake L1 for interchain asset-agnostic privacy
https://namada.net
GNU General Public License v3.0
2.39k stars 945 forks source link

The completion message was shown before all pre-compiling are completed #1890

Open yito88 opened 1 year ago

yito88 commented 1 year ago

When init_chain, all wasm codes are pre-compiled. The completion message Finished compiling all TX or Finished compiling all VP. should be shown when all compiling is finished. However, the messages were shown multiple times before all compiling completion.

pre_compile() shows the message when all of the current progress were Done even if some of wasm codes had not started to be compiled yet (they were not in progress).

2023-09-13T08:13:48.568646Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 8EEE3A5AA56B700802C062CB6FD270B18A360057479D6C9BCDF4CD7F9EA7A91D.
2023-09-13T08:13:48.645179Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 374C8CC0F907C8242071A600F80A6C48DDE85C680EC987E68C2D9899C57FB745.
2023-09-13T08:13:48.722348Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 5AC3BB36FCD42BB0C81C3156F2AC164A4EF93D058BF8437C8937625EF353EE90.
2023-09-13T08:13:48.856637Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM A407D0334DE20DF54728BA27F2AB0AD2243D627C160B439D419AF15A51E5B324.
2023-09-13T08:13:48.934129Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM EB04169DEB73967E746BA3C050C79F12411ABDEA8321B766BE630450B9B64209.
2023-09-13T08:13:48.992405Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling WASM 8EEE3A5AA56B700802C062CB6FD270B18A360057479D6C9BCDF4CD7F9EA7A91D.
2023-09-13T08:13:49.481461Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling WASM 374C8CC0F907C8242071A600F80A6C48DDE85C680EC987E68C2D9899C57FB745.
2023-09-13T08:13:51.510576Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling all Tx.
2023-09-13T08:13:51.616021Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 62A4ED23E0602527707CA226FEC3774E824DCECBC2DB3D45CB5030A8541F11D3.
2023-09-13T08:13:51.632157Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling WASM 5AC3BB36FCD42BB0C81C3156F2AC164A4EF93D058BF8437C8937625EF353EE90.
2023-09-13T08:13:51.702973Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM D3566E49A77E3CAFE00D463BF40906F2A3629DB8383C45079CC910188F948AD0.
2023-09-13T08:13:51.745744Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 7ADE2E4BF8B9BBA35C797BED031B0543FDE439C6DA6F8271E797D49EFE313B7E.
2023-09-13T08:13:51.772113Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling WASM EB04169DEB73967E746BA3C050C79F12411ABDEA8321B766BE630450B9B64209.
2023-09-13T08:13:51.779549Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 324F1E2785B352F4850F69C7D4ED1733D194D2BB5DD61ED51D60252D5EE7B35B.
2023-09-13T08:13:51.839963Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM D71FFEA875230D10002AA4B84D7BAA7C37A48455DBFFBF3CFB3AA00F029E5751.
2023-09-13T08:13:51.865586Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling WASM 62A4ED23E0602527707CA226FEC3774E824DCECBC2DB3D45CB5030A8541F11D3.
2023-09-13T08:13:51.903861Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling WASM A407D0334DE20DF54728BA27F2AB0AD2243D627C160B439D419AF15A51E5B324.
2023-09-13T08:13:51.903890Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling all VP.
2023-09-13T08:13:52.007753Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 2BF2D923561F446E0353475D48B1E539398A7E2B52158FC6F01065F182F91847.
2023-09-13T08:13:52.039501Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM E604004E8CB008D2A2107CFC304CB63B75D2846E0D3A7754CC26BE32F4EB0388.
2023-09-13T08:13:52.088762Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 2DFA3AEE2CF8D2F0EB329D3467FEFFF528E0E68F1360A8588A69B9174DBF15B7.
2023-09-13T08:13:52.130579Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 81B90C0106814BC1A5D879E4FD6BDF0267CAD8941D046A638E77D5D46BA008FB.
2023-09-13T08:13:52.194861Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 7AEDAEB710B2A86574054CF9608073A3F4741B16B45738473FB57CCFD0B5D486.
2023-09-13T08:13:52.232478Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 6C18052951E4A8CF97A2286FEA8DABFA330240EFB23055853637A4EF33CF39BB.
2023-09-13T08:13:52.275598Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 17B797184DC4250CA1B0C546C278882EB5130D95CAD70BF1A8C407F20271DCD5.
2023-09-13T08:13:52.323239Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 740C1374265D8F91ED1424526B157C386F46C48822984D4F09BD0680274A59CF.
2023-09-13T08:13:52.381578Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 3571C3676B40B53FA11C5B04D7A1697EE3734D97FC6A9F461025A8D6BEF0454D.
2023-09-13T08:13:52.438088Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM BC0A658E21B76DC32017EEF057A21D8E0BA5D06C66B5A4A9FD0A84A258212EB5.
2023-09-13T08:13:52.478161Z  INFO namada::vm::wasm::compilation_cache::common: Compiling WASM 4B6B895B0FDBF5FDF5312CF8A19F2927819E444BAC733F7184ED5FDC58091E22.
2023-09-13T08:13:52.502311Z  INFO namada_apps::node::ledger::shell::init_chain: Genesis total native tokens: 10223377239254.000000.
2023-09-13T08:13:52.502336Z  INFO namada_apps::node::ledger::shell::init_chain: Total staked tokens: 200000.000000.
2023-09-13T08:13:53.525273Z  INFO namada_apps::node::ledger::shell::prepare_proposal: Proposing block height=1 num_of_txs=0
2023-09-13T08:13:53.539161Z  INFO namada_apps::node::ledger::shell::process_proposal: Received block proposal proposer="E0D3A1596CCAEF066CABA1EE96258B5459628655" height=1 hash="14830A015BE06E64613DFEA923DDB1A928F858BA4CDE4302552D8EC150857111" n_txs=0
2023-09-13T08:13:53.559826Z  INFO namada_apps::node::ledger::shell::finalize_block: Block height: 1, epoch: 0, is new epoch: false.
2023-09-13T08:13:53.559920Z  INFO namada_apps::node::ledger::shell::finalize_block: Applied 0 transactions. Wrappers: 0, successful inner txs: 0, rejected inner txs: 0, errored inner txs: 0, vp cache size: 0 - 0, tx cache size 0 - 0
2023-09-13T08:13:53.559930Z  INFO namada_apps::node::ledger::shell::finalize_block: txs executed: 0
2023-09-13T08:13:53.645081Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling WASM 6C18052951E4A8CF97A2286FEA8DABFA330240EFB23055853637A4EF33CF39BB.
2023-09-13T08:13:53.645546Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling WASM 81B90C0106814BC1A5D879E4FD6BDF0267CAD8941D046A638E77D5D46BA008FB.
2023-09-13T08:13:53.645580Z  INFO namada::vm::wasm::compilation_cache::common: Finished compiling all VP.
Kofituo commented 8 months ago

Hello. I'd like to work on this issue. Can I get a fair idea as to how to go about it? @yito88 @yito88 @jasondavies @leontiad @tzemanovic

cwgoes commented 3 weeks ago

@yito88 Is this still the case?