dncurrency/nano/node/bootstrap_weights_live.hpp
Minecon724 3579b95fff
Some checks failed
code_sanitizers.yml / squashed commit (push) Failing after 0s
Static Analyzers / clang_format (push) Has been cancelled
Static Analyzers / cmake_format (push) Has been cancelled
Static Analyzers / code_inspector (push) Has been cancelled
Code Flamegraphs / Linux [large_confirmation] (push) Has been cancelled
Code Flamegraphs / Linux [large_direct_processing] (push) Has been cancelled
Unit Tests / macOS [lmdb] (push) Has been cancelled
Unit Tests / macOS [rocksdb] (push) Has been cancelled
Unit Tests / Linux [lmdb | clang] (push) Has been cancelled
Unit Tests / Linux [lmdb | gcc] (push) Has been cancelled
Unit Tests / Linux [rocksdb | clang] (push) Has been cancelled
Unit Tests / Linux [rocksdb | gcc] (push) Has been cancelled
Unit Tests / Windows [lmdb] (push) Has been cancelled
Unit Tests / Windows [rocksdb] (push) Has been cancelled
squashed commit
2025-10-15 17:34:32 +02:00

14 lines
467 B
C++

#pragma once
#include <string>
#include <vector>
namespace nano::weights
{
// Bootstrap weights for live network as of 31-08-2025
std::vector<std::pair<std::string, std::string>> preconfigured_weights_live = {
{ "dn_1piiiebxxjn5r35eob6zfnsr9dqqysyd95z3sq1gsafuhgk6mi4s9f4xg6rh", "3816584242424242424242424242424242" },
{ "dn_1w7crtqfea1mda7qcr7dfdfu9qptqgewn3rtks331om5whf6gg5i1qen1mif", "425839999000000000000000000000000" },
};
uint64_t max_blocks_live = 41;
}